summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
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 d60cbac..1c97db7 100755
--- a/configure.py
+++ b/configure.py
@@ -83,7 +83,7 @@ class Platform(object):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = popen.communicate()
- return b'/FS ' in out
+ return b'/FS' in out
def is_windows(self):
return self.is_mingw() or self.is_msvc()