| Index: tools/gyp/find_mac_gcc_version.py
|
| diff --git a/tools/gyp/find_mac_gcc_version.py b/tools/gyp/find_mac_gcc_version.py
|
| index e7d0f10c6e4d32c42c5ecdaa763e36861e0a7057..79e9af3edc1b86f06682cd6800036cfad3853b5f 100755
|
| --- a/tools/gyp/find_mac_gcc_version.py
|
| +++ b/tools/gyp/find_mac_gcc_version.py
|
| @@ -25,7 +25,7 @@ def main():
|
| return '4.2'
|
| elif major == 4 and minor < 5:
|
| return 'com.apple.compilers.llvmgcc42'
|
| - elif (major == 4 and minor >= 5) or major => 5:
|
| + elif (major == 4 and minor >= 5) or major >= 5:
|
| # XCode seems to select the specific clang version automatically
|
| return 'com.apple.compilers.llvm.clang.1_0'
|
| else:
|
|
|