summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorScott Graham <scott.github@h4ck3r.net>2021-06-13 05:50:56 (GMT)
committerScott Graham <scott.github@h4ck3r.net>2021-06-13 05:50:56 (GMT)
commit1fbae7fe9800ff02e5104ae583e1d5166a36e90f (patch)
treed03383f76a2ec8f2148ce64ef43665d373ddcd26 /configure.py
parentd68f107f7a80d552d764c8cd0545955be02debe2 (diff)
downloadNinja-1fbae7fe9800ff02e5104ae583e1d5166a36e90f.zip
Ninja-1fbae7fe9800ff02e5104ae583e1d5166a36e90f.tar.gz
Ninja-1fbae7fe9800ff02e5104ae583e1d5166a36e90f.tar.bz2
win: Use cl /help to test for /FS requirement
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index ffa75c7..0ca7ec3 100755
--- a/configure.py
+++ b/configure.py
@@ -84,7 +84,7 @@ class Platform(object):
return self._platform == 'msvc'
def msvc_needs_fs(self):
- popen = subprocess.Popen(['cl', '/nologo', '/?'],
+ popen = subprocess.Popen(['cl', '/nologo', '/help'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = popen.communicate()