summaryrefslogtreecommitdiffstats
path: root/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-xbootstrap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 9ac46ba..86d38d9 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -74,7 +74,8 @@ if sys.platform.startswith('win32'):
vcdir = os.environ.get('VCINSTALLDIR')
if vcdir:
- args = [os.path.join(vcdir, 'bin', 'cl.exe'), '/nologo', '/EHsc', '/DNOMINMAX']
+ args = [os.path.join(vcdir, 'bin', 'cl.exe'),
+ '/nologo', '/EHsc', '/DNOMINMAX']
else:
args = shlex.split(os.environ.get('CXX', 'g++'))
args.extend(['-Wno-deprecated',