diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-11-11 21:54:14 (GMT) |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-11-11 21:54:14 (GMT) |
commit | 805875b44aa2d52cf5eb943db055d3b7e9c8ed21 (patch) | |
tree | 9e15c6ef4d307dee0f9a51732449aed507770a12 /configure.py | |
parent | b1129b15ffad601a18ff4ac83130a71f5de64e43 (diff) | |
download | Ninja-805875b44aa2d52cf5eb943db055d3b7e9c8ed21.zip Ninja-805875b44aa2d52cf5eb943db055d3b7e9c8ed21.tar.gz Ninja-805875b44aa2d52cf5eb943db055d3b7e9c8ed21.tar.bz2 |
Try to fix #685
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 64f940b..0cff196 100755 --- a/configure.py +++ b/configure.py @@ -81,7 +81,7 @@ class Platform(object): stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = popen.communicate() - return '/FS ' in str(out) + return b'/FS ' in out def is_windows(self): return self.is_mingw() or self.is_msvc() |