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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-03-22 18:25:18 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-03-22 18:25:18 +0300
commite5eed21a6bf9d8ab36f72d51c3d9f6fad02e795e (patch)
treebebca8e4390819a0dd8c6dc9999fafa1b63ebe57 /build_files/buildbot/slave_compile.py
parent636ceed094635ab80867d062377d9a8e6ddacfcb (diff)
Buildbot master tweaks: use generic builder for scons win32, unpack fixes.
Diffstat (limited to 'build_files/buildbot/slave_compile.py')
-rw-r--r--build_files/buildbot/slave_compile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 4892865bcea..708c2951272 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -52,7 +52,8 @@ if builder.find('cmake') != -1:
else:
# scons
os.chdir(blender_dir)
+ scons_options = []
- retcode = subprocess.call(['python', 'scons/scons.py'])
+ retcode = subprocess.call(['python', 'scons/scons.py'] + scons_options)
sys.exit(retcode)