summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2013-11-18 10:00:36 (GMT)
committerNico Weber <nicolasweber@gmx.de>2013-11-18 10:00:36 (GMT)
commit7ccecee4f10036a74942ca406dcd4a7b41f291b4 (patch)
treef131a94f259472635eeb3adec6d62f810948a6dd
parent43b3296f633658b303fa3194b093cccce77df013 (diff)
parent6b9104734ae3b58824f4850b356737616b1753f7 (diff)
downloadNinja-7ccecee4f10036a74942ca406dcd4a7b41f291b4.zip
Ninja-7ccecee4f10036a74942ca406dcd4a7b41f291b4.tar.gz
Ninja-7ccecee4f10036a74942ca406dcd4a7b41f291b4.tar.bz2
Merge pull request #688 from ndmitchell/master
Fix up platform_helper for MSVC
-rw-r--r--platform_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform_helper.py b/platform_helper.py
index dac7c02..1b45e19 100644
--- a/platform_helper.py
+++ b/platform_helper.py
@@ -58,7 +58,7 @@ class Platform(object):
def msvc_needs_fs(self):
import subprocess
- popen = subprocess.Popen('cl /nologo /?',
+ popen = subprocess.Popen(['cl', '/nologo', '/?'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = popen.communicate()