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>2019-10-31 18:45:56 +0300
committerRay Molenkamp <github@lazydodo.com>2019-10-31 18:45:56 +0300
commit3c32c5c2ddd04ef826d58bc3f8dd3f4420adeb73 (patch)
treee181dd383c19075f16224c764ff9cf963be61755 /build_files
parenteb95e2863549d726806aa9cb9dd20a17069d910c (diff)
make.bat: Warn user about missing svn.exe
Diffstat (limited to 'build_files')
-rw-r--r--build_files/windows/check_libraries.cmd4
1 files changed, 3 insertions, 1 deletions
diff --git a/build_files/windows/check_libraries.cmd b/build_files/windows/check_libraries.cmd
index b838c7d7d19..24b30c6a9b0 100644
--- a/build_files/windows/check_libraries.cmd
+++ b/build_files/windows/check_libraries.cmd
@@ -10,7 +10,6 @@ if NOT "%verbose%" == "" (
)
if NOT EXIST %BUILD_VS_LIBDIR% (
rem libs not found, but svn is on the system
- echo
if not "%SVN%"=="" (
echo.
echo The required external libraries in %BUILD_VS_LIBDIR% are missing
@@ -55,5 +54,8 @@ if NOT EXIST %BUILD_VS_LIBDIR% (
echo Error: Required libraries not found at "%BUILD_VS_LIBDIR%"
echo This is needed for building, aborting!
echo.
+ if "%SVN%"=="" (
+ echo This is most likely caused by svn.exe not being available.
+ )
exit /b 1
) \ No newline at end of file