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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-05-31 16:20:14 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2016-06-08 22:45:40 +0300
commit46ca7ec02afd18ed855f2b79144053c93fc4dfcf (patch)
tree22180284508a84302fc93dae2aa406b8f1665899 /build_files
parentb590118c4a1048a800c6a9840bfa0c3f3259014b (diff)
Buildbot: Use proper list management function
Spotted by Campbell, thanks!
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index aa643b28f8f..c82fe4ab062 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -77,16 +77,16 @@ if 'cmake' in builder:
elif builder.startswith('win'):
if builder.endswith('_vc14'):
if builder.startswith('win64'):
- cmake_options.append(['-G', '"Visual Studio 14 2015 Win64"'])
+ cmake_options.extend(['-G', '"Visual Studio 14 2015 Win64"'])
elif builder.startswith('win32'):
bits = 32
- cmake_options.append(['-G', '"Visual Studio 14 2015"'])
+ cmake_options.extend(['-G', '"Visual Studio 14 2015"'])
else:
if builder.startswith('win64'):
- cmake_options.append(['-G', '"Visual Studio 12 2013 Win64"'])
+ cmake_options.extend(['-G', '"Visual Studio 12 2013 Win64"'])
elif builder.startswith('win32'):
bits = 32
- cmake_options.append(['-G', '"Visual Studio 12 2013"'])
+ cmake_options.extend(['-G', '"Visual Studio 12 2013"'])
elif builder.startswith('linux'):
tokens = builder.split("_")