summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 7b6e781..8c0687e 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -77,9 +77,9 @@ if sys.platform.startswith('win32'):
vcdir = os.environ.get('VCINSTALLDIR')
if vcdir:
if options.x64:
- cl = os.path.join(vcdir, 'bin', 'amd64', 'cl.exe'),
+ cl = [os.path.join(vcdir, 'bin', 'amd64', 'cl.exe')]
else:
- cl = [os.path.join(vcdir, 'bin', 'cl.exe')
+ cl = [os.path.join(vcdir, 'bin', 'cl.exe')]
args = cl + ['/nologo', '/EHsc', '/DNOMINMAX']
else:
args = shlex.split(os.environ.get('CXX', 'g++'))