summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsphawk <sphawk@nate.com>2016-01-25 13:38:08 (GMT)
committersphawk <sphawk@nate.com>2016-01-25 13:43:14 (GMT)
commiteb1a4fb48945aa509070f2704cbed30629af5bd1 (patch)
tree2f668f8f9d30aee7c2d83654c340a1e844ed6f88
parent19a3066bf76bd121ca39ca138577f90bea5a10a2 (diff)
downloadNinja-eb1a4fb48945aa509070f2704cbed30629af5bd1.zip
Ninja-eb1a4fb48945aa509070f2704cbed30629af5bd1.tar.gz
Ninja-eb1a4fb48945aa509070f2704cbed30629af5bd1.tar.bz2
fix for localized version of cl.exe
-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()