summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2014-11-22 19:45:18 (GMT)
committerNico Weber <nicolasweber@gmx.de>2014-11-22 19:45:18 (GMT)
commitc528af904dbeeeb1ddaab7d66bcec68c069e0681 (patch)
tree8a6d4b090a862cd2edaf864a2d69e639d866eb6a
parent76bdba6c3ecdcad67d675b5358dc4f8946def9d6 (diff)
parent13bd84f0ac493b28253f28be26b8ef4ca9bad41d (diff)
downloadNinja-c528af904dbeeeb1ddaab7d66bcec68c069e0681.zip
Ninja-c528af904dbeeeb1ddaab7d66bcec68c069e0681.tar.gz
Ninja-c528af904dbeeeb1ddaab7d66bcec68c069e0681.tar.bz2
Merge pull request #866 from nico/winfix
Fix Windows build after #862. Thanks to @harig for the report.
-rwxr-xr-xconfigure.py2
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: