summaryrefslogtreecommitdiffstats
path: root/platform_helper.py
diff options
context:
space:
mode:
authorPatrick von Reth <vonreth@kde.org>2013-12-05 09:37:52 (GMT)
committerPatrick von Reth <vonreth@kde.org>2013-12-05 09:37:52 (GMT)
commitabf3546ae6645bcb7f53d60bbfdcf3951a37fcbb (patch)
tree763d13724824d634c684ccc8feea776052e3b9cb /platform_helper.py
parent7ccecee4f10036a74942ca406dcd4a7b41f291b4 (diff)
downloadNinja-abf3546ae6645bcb7f53d60bbfdcf3951a37fcbb.zip
Ninja-abf3546ae6645bcb7f53d60bbfdcf3951a37fcbb.tar.gz
Ninja-abf3546ae6645bcb7f53d60bbfdcf3951a37fcbb.tar.bz2
fixed platform_helper.py msvc_needs_fs test
Diffstat (limited to 'platform_helper.py')
-rw-r--r--platform_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform_helper.py b/platform_helper.py
index 1b45e19..de102b5 100644
--- a/platform_helper.py
+++ b/platform_helper.py
@@ -62,7 +62,7 @@ class Platform(object):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = popen.communicate()
- return '/FS ' in out
+ return '/FS ' in str(out)
def is_windows(self):
return self.is_mingw() or self.is_msvc()