diff options
-rwxr-xr-x | build/gyp_chromium | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 1fa030f..b165f70 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -145,7 +145,7 @@ if __name__ == '__main__': if sys.platform.startswith('linux') and not os.environ.get('GYP_GENERATORS'): os.environ['GYP_GENERATORS'] = 'ninja' elif sys.platform == 'darwin' and not os.environ.get('GYP_GENERATORS') and \ - not 'OS=ios' in os.environ.get('GYP_DEFINES'): + not 'OS=ios' in os.environ.get('GYP_DEFINES', []): os.environ['GYP_GENERATORS'] = 'ninja' # If CHROMIUM_GYP_SYNTAX_CHECK is set to 1, it will invoke gyp with --check |