[Bf-blender-cvs] [424839e3c2d] master: make.bat: fix build error when there are spaces in the path to svn/git/cmake

Ray Molenkamp noreply at git.blender.org
Wed Sep 19 18:16:54 CEST 2018


Commit: 424839e3c2d950fce315f9eefcd1334356f43f8d
Author: Ray Molenkamp
Date:   Wed Sep 19 10:16:46 2018 -0600
Branches: master
https://developer.blender.org/rB424839e3c2d950fce315f9eefcd1334356f43f8d

make.bat: fix build error when there are spaces in the path to svn/git/cmake

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

M	build_files/windows/find_dependencies.cmd

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

diff --git a/build_files/windows/find_dependencies.cmd b/build_files/windows/find_dependencies.cmd
index 219e9801831..4f38b0af256 100644
--- a/build_files/windows/find_dependencies.cmd
+++ b/build_files/windows/find_dependencies.cmd
@@ -3,9 +3,9 @@ for %%X in (svn.exe) do (set SVN=%%~$PATH:X)
 for %%X in (cmake.exe) do (set CMAKE=%%~$PATH:X)
 for %%X in (git.exe) do (set GIT=%%~$PATH:X)
 if NOT "%verbose%" == "" (
-	echo svn   : %SVN%
-	echo cmake : %CMAKE%
-	echo git   : %GIT%
+	echo svn   : "%SVN%"
+	echo cmake : "%CMAKE%"
+	echo git   : "%GIT%"
 )
 if "%CMAKE%" == "" (
 	echo Cmake not found in path, required for building, exiting...



More information about the Bf-blender-cvs mailing list