Buildbot: Use proper list management function
Spotted by Campbell, thanks!
This commit is contained in:
@@ -77,16 +77,16 @@ if 'cmake' in builder:
|
|||||||
elif builder.startswith('win'):
|
elif builder.startswith('win'):
|
||||||
if builder.endswith('_vc14'):
|
if builder.endswith('_vc14'):
|
||||||
if builder.startswith('win64'):
|
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'):
|
elif builder.startswith('win32'):
|
||||||
bits = 32
|
bits = 32
|
||||||
cmake_options.append(['-G', '"Visual Studio 14 2015"'])
|
cmake_options.extend(['-G', '"Visual Studio 14 2015"'])
|
||||||
else:
|
else:
|
||||||
if builder.startswith('win64'):
|
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'):
|
elif builder.startswith('win32'):
|
||||||
bits = 32
|
bits = 32
|
||||||
cmake_options.append(['-G', '"Visual Studio 12 2013"'])
|
cmake_options.extend(['-G', '"Visual Studio 12 2013"'])
|
||||||
|
|
||||||
elif builder.startswith('linux'):
|
elif builder.startswith('linux'):
|
||||||
tokens = builder.split("_")
|
tokens = builder.split("_")
|
||||||
|
Reference in New Issue
Block a user