[Bf-blender-cvs] [7d09c943f64] master: make.bat: Fix rebuilds with custom build directory.

Ray Molenkamp noreply at git.blender.org
Wed Sep 25 15:17:11 CEST 2019


Commit: 7d09c943f6453ad626c5938da6e0b3082b4b4abe
Author: Ray Molenkamp
Date:   Wed Sep 25 07:17:06 2019 -0600
Branches: master
https://developer.blender.org/rB7d09c943f6453ad626c5938da6e0b3082b4b4abe

make.bat: Fix rebuilds with custom build directory.

When calling make.bat multiple times to rebuild blender
make.bat failed to rebuild if a custom build dir was set.

reported and fixed on chat by @dgsantana

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

M	build_files/windows/parse_arguments.cmd

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

diff --git a/build_files/windows/parse_arguments.cmd b/build_files/windows/parse_arguments.cmd
index 47c6f81adb3..5f60e321a56 100644
--- a/build_files/windows/parse_arguments.cmd
+++ b/build_files/windows/parse_arguments.cmd
@@ -13,7 +13,7 @@ if NOT "%1" == "" (
 		set BUILD_TYPE=Debug
 	REM Build Configurations
 	) else if "%1" == "builddir" (
-		set BUILD_DIR_OVERRRIDE="%BLENDER_DIR%..\%2"
+		set BUILD_DIR_OVERRRIDE=%BLENDER_DIR%..\%2
 		shift /1
 	) else if "%1" == "with_tests" (
 		set TESTS_CMAKE_ARGS=%TESTS_CMAKE_ARGS% -DWITH_GTESTS=On



More information about the Bf-blender-cvs mailing list