summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2020-04-17 14:55:55 -0400
committerAndrew Dunstan <andrew@dunslane.net>2020-04-17 14:56:56 -0400
commit4c9239d08a87b8e4a5f9731c29993f9976aa824f (patch)
tree5ea4e5cbb180d2c195df64ab2ee401ceb1f5ab74 /src
parent3cdf2421a299f2ebca0f79166b4d959d3e6a5184 (diff)
Use a slightly more liberal regex to detect Visual Studio version
Apparently in some language versions of Visual Studio nmake outputs some material after the version number and before the end of the line. This has been seen in Chinese versions. Therefore, we no longer demand that the version string comes at the end of a line. Per complaint from Cuiping Lin. Backpatch to all live branches.
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/VSObjectFactory.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/VSObjectFactory.pm b/src/tools/msvc/VSObjectFactory.pm
index 07be39f2bd8..f8f6b300eba 100644
--- a/src/tools/msvc/VSObjectFactory.pm
+++ b/src/tools/msvc/VSObjectFactory.pm
@@ -150,7 +150,7 @@ sub DetermineVisualStudioVersion
$? >> 8 == 0
or croak
"Unable to determine Visual Studio version: The nmake command wasn't found.";
- if ($output =~ /(\d+)\.(\d+)\.\d+(\.\d+)?$/m)
+ if ($output =~ /(\d+)\.(\d+)\.\d+(\.\d+)?/)
{
return _GetVisualStudioVersion($1, $2);
}