Skip to content

Commit

Permalink
fix syntax errors in bootstrap.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mwoehlke-kitware authored and evmar committed Aug 10, 2012
1 parent 09775f0 commit ee625b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def run(*args, **kwargs):
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++'))
Expand Down

0 comments on commit ee625b0

Please sign in to comment.