[Bf-blender-cvs] [7a0699db34a] master: make.bat : Fix builtime.txt being written in the wrong folder.

Ray Molenkamp noreply at git.blender.org
Sun May 27 03:20:15 CEST 2018


Commit: 7a0699db34aa20d96e317202fee7d1266ff3b274
Author: Ray Molenkamp
Date:   Sat May 26 19:20:07 2018 -0600
Branches: master
https://developer.blender.org/rB7a0699db34aa20d96e317202fee7d1266ff3b274

make.bat : Fix builtime.txt being written in the wrong folder.

===================================================================

M	build_files/windows/build_msbuild.cmd

===================================================================

diff --git a/build_files/windows/build_msbuild.cmd b/build_files/windows/build_msbuild.cmd
index 49958ed67c5..6ca5f1b0df8 100644
--- a/build_files/windows/build_msbuild.cmd
+++ b/build_files/windows/build_msbuild.cmd
@@ -1,5 +1,5 @@
 if "%NOBUILD%"=="1" goto EOF
-echo %TIME% > buildtime.txt
+echo %TIME% > %BUILD_DIR%\buildtime.txt
 msbuild ^
 	%BUILD_DIR%\Blender.sln ^
 	/target:build ^
@@ -22,5 +22,5 @@ msbuild ^
 		echo Error during install phase
 		exit /b 1
 	)
-echo %TIME% >>buildtime.txt
+echo %TIME% >> %BUILD_DIR%\buildtime.txt
 :EOF
\ No newline at end of file



More information about the Bf-blender-cvs mailing list