From 13bd84f0ac493b28253f28be26b8ef4ca9bad41d Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 22 Nov 2014 11:43:33 -0800 Subject: Fix Windows build after #862. Thanks to @harig for the report. --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v0.12