summaryrefslogtreecommitdiffstats
path: root/bootstrap.py
diff options
context:
space:
mode:
authorMatthew Woehlke <matthew.woehlke@kitware.com>2012-08-10 21:22:34 (GMT)
committerEvan Martin <martine@danga.com>2012-08-10 21:29:22 (GMT)
commitee625b0b8a16a3182bf1e0531c81f846ef9f4df9 (patch)
treee965f3b5dc320c9c978926ce1fcbe576c4029662 /bootstrap.py
parent09775f02209a07a4e1032b9ab9d8ce5f0ff8d583 (diff)
downloadNinja-ee625b0b8a16a3182bf1e0531c81f846ef9f4df9.zip
Ninja-ee625b0b8a16a3182bf1e0531c81f846ef9f4df9.tar.gz
Ninja-ee625b0b8a16a3182bf1e0531c81f846ef9f4df9.tar.bz2
fix syntax errors in bootstrap.py
Diffstat (limited to 'bootstrap.py')
-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++'))