From 424839e3c2d950fce315f9eefcd1334356f43f8d Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Wed, 19 Sep 2018 10:16:46 -0600 Subject: make.bat: fix build error when there are spaces in the path to svn/git/cmake --- build_files/windows/find_dependencies.cmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build_files/windows') 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... -- cgit v1.2.3