fix for localized version of cl.exe
authorsphawk <sphawk@nate.com>
Mon, 25 Jan 2016 13:38:08 +0000 (22:38 +0900)
committersphawk <sphawk@nate.com>
Mon, 25 Jan 2016 13:43:14 +0000 (22:43 +0900)
configure.py

index d60cbac..1c97db7 100755 (executable)
@@ -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()