Merge pull request #2337 from martin-frbg/issue2336

Support two-digit version numbers in gcc version check
This commit is contained in:
Martin Kroeker 2019-12-07 09:38:06 +01:00 committed by GitHub
commit c6ecb195e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ if ($compiler eq "") {
if ($data =~ /GNU/) {
$data =~ /(\d)\.(\d).(\d)/;
$data =~ /(\d+)\.(\d+).(\d+)/;
$major = $1;
$minor = $2;