summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJan Niklas Hasse <jhasse@bixense.com>2021-08-25 09:18:36 (GMT)
committerGitHub <noreply@github.com>2021-08-25 09:18:36 (GMT)
commite90dfd3c7528b9c620eab29121a3591af7bf035e (patch)
tree7146fb5018d8c46eea073a7453f137c0f201610f /configure.py
parentb28bf72deaea77f4ddeb8aafc1505811ed31cb21 (diff)
parent1fbae7fe9800ff02e5104ae583e1d5166a36e90f (diff)
downloadNinja-e90dfd3c7528b9c620eab29121a3591af7bf035e.zip
Ninja-e90dfd3c7528b9c620eab29121a3591af7bf035e.tar.gz
Ninja-e90dfd3c7528b9c620eab29121a3591af7bf035e.tar.bz2
Merge pull request #1983 from sgraham/master
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 4ca78fb..e0a5a22 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()