diff options
author | Nico Weber <nicolasweber@gmx.de> | 2014-11-22 19:43:33 (GMT) |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2014-11-22 19:43:33 (GMT) |
commit | 13bd84f0ac493b28253f28be26b8ef4ca9bad41d (patch) | |
tree | 8a6d4b090a862cd2edaf864a2d69e639d866eb6a | |
parent | 76bdba6c3ecdcad67d675b5358dc4f8946def9d6 (diff) | |
download | Ninja-13bd84f0ac493b28253f28be26b8ef4ca9bad41d.zip Ninja-13bd84f0ac493b28253f28be26b8ef4ca9bad41d.tar.gz Ninja-13bd84f0ac493b28253f28be26b8ef4ca9bad41d.tar.bz2 |
Fix Windows build after #862. Thanks to @harig for the report.
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index c58b1e4..aac4ad4 100755 --- a/configure.py +++ b/configure.py @@ -95,7 +95,7 @@ class Platform(object): return self._platform in ('linux', 'openbsd', 'bitrig') def supports_ninja_browse(self): - return self._platform not in ('windows', 'solaris') + return not self.is_windows() and not self.is_solaris() class Bootstrap: |