Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2018-09-19 19:16:46 +0300
committerRay Molenkamp <github@lazydodo.com>2018-09-19 19:16:46 +0300
commit424839e3c2d950fce315f9eefcd1334356f43f8d (patch)
tree4719260285e38c4eb88dec1ffbd06da0afeda460 /build_files/windows/find_dependencies.cmd
parenta0402074ed47ce7328fa13e3b0c3dfe08eaa13bb (diff)
make.bat: fix build error when there are spaces in the path to svn/git/cmake
Diffstat (limited to 'build_files/windows/find_dependencies.cmd')
-rw-r--r--build_files/windows/find_dependencies.cmd6
1 files changed, 3 insertions, 3 deletions
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...