projects
/
platform
/
upstream
/
ninja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
09775f0
)
fix syntax errors in bootstrap.py
author
Matthew Woehlke
<matthew.woehlke@kitware.com>
Fri, 10 Aug 2012 21:22:34 +0000
(17:22 -0400)
committer
Evan Martin
<martine@danga.com>
Fri, 10 Aug 2012 21:29:22 +0000
(14:29 -0700)
bootstrap.py
patch
|
blob
|
history
diff --git
a/bootstrap.py
b/bootstrap.py
index
7b6e781
..
8c0687e
100755
(executable)
--- 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++'))