From 1fbae7fe9800ff02e5104ae583e1d5166a36e90f Mon Sep 17 00:00:00 2001 From: Scott Graham Date: Sat, 12 Jun 2021 22:50:56 -0700 Subject: win: Use cl /help to test for /FS requirement --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v0.12