[Bf-blender-cvs] [3c32c5c2ddd] master: make.bat: Warn user about missing svn.exe

Ray Molenkamp noreply at git.blender.org
Thu Oct 31 16:46:02 CET 2019


Commit: 3c32c5c2ddd04ef826d58bc3f8dd3f4420adeb73
Author: Ray Molenkamp
Date:   Thu Oct 31 09:45:56 2019 -0600
Branches: master
https://developer.blender.org/rB3c32c5c2ddd04ef826d58bc3f8dd3f4420adeb73

make.bat: Warn user about missing svn.exe

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

M	build_files/windows/check_libraries.cmd

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

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



More information about the Bf-blender-cvs mailing list