Commit: f25f1a66884944530635839bedec2176043f41ff
Author: Martijn Berger
Date:   Tue Nov 11 11:35:38 2014 +0100
Branches: master
https://developer.blender.org/rBf25f1a66884944530635839bedec2176043f41ff

buildbot: fix: cmake generator is kind of sensitive

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

M       build_files/buildbot/slave_compile.py

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

diff --git a/build_files/buildbot/slave_compile.py 
b/build_files/buildbot/slave_compile.py
index c9a2891..f57ca2a 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -48,9 +48,9 @@ if 'cmake' in builder:
 
     if 'win64' in builder:
 
-        cmake_options.append('-G Visual Studio 12 2013 Win64')
+        cmake_options.append(['-G','"Visual Studio 12 2013 Win64"'])
     elif 'win32' in builder:
-        cmake_options.append('-G Visual Studio 12 2013')
+        cmake_options.append(['-G','"Visual Studio 12 2013"'])
 
 
     # configure and make

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to