diff options
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 7bfd50645..fea687a87 100755 --- a/configure.py +++ b/configure.py @@ -2712,7 +2712,7 @@ class CompilerDetector(object): '900': '4.0', } - match = re.search(r'Apple LLVM version [0-9\.]+ \(clang-([0-9]{3})\.', cc_output) + match = re.search(r'Apple LLVM version [0-9\.]+ \(clang-([0-9]+)\.', cc_output) if match: apple_clang_version = match.group(1) if apple_clang_version in xcode_version_to_clang: |