From ee625b0b8a16a3182bf1e0531c81f846ef9f4df9 Mon Sep 17 00:00:00 2001 From: Matthew Woehlke Date: Fri, 10 Aug 2012 17:22:34 -0400 Subject: fix syntax errors in bootstrap.py --- bootstrap.py | 4 ++-- 1 file 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++')) -- cgit v0.12