fix syntax errors in bootstrap.py
authorMatthew Woehlke <matthew.woehlke@kitware.com>
Fri, 10 Aug 2012 21:22:34 +0000 (17:22 -0400)
committerEvan Martin <martine@danga.com>
Fri, 10 Aug 2012 21:29:22 +0000 (14:29 -0700)
bootstrap.py

index 7b6e781..8c0687e 100755 (executable)
@@ -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++'))