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

This commit is contained in:
Ray Molenkamp
2018-09-19 10:16:46 -06:00
parent a0402074ed
commit 424839e3c2

View File

@@ -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...