diff options
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 6fa4444e..e11dc95a 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -184,7 +184,7 @@ else: if 'gcparam' not in str(SPIDERMONKEY_ENGINE): SPIDERMONKEY_ENGINE += ['-e', "gcparam('maxBytes', 1024*1024*1024);"] # Our very large files need lots of gc heap -WINDOWS = 'win' in sys.platform +WINDOWS = sys.platform.startswith ('win') # Temp file utilities |