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 fe65edcc6..7e3ca1a44 100755 --- a/configure.py +++ b/configure.py @@ -2578,7 +2578,7 @@ class CompilerDetector(object): 'clang': ['-v'], } _version_patterns = { - 'msvc': r'Compiler Version ([0-9]+\.[0-9]+)\.[0-9\.]+ for', + 'msvc': r' ([0-9]+\.[0-9]+)\.[0-9\.]+ ', 'gcc': r'gcc version ([0-9]+\.[0-9]+)\.[0-9]+', 'clang': r'clang version ([0-9]+\.[0-9])[ \.]', } |