diff options
author | Slávek Banko <[email protected]> | 2021-09-22 15:03:23 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-09-22 15:04:05 +0200 |
commit | 8e44169855b956886b93195570ba3157d831f2c9 (patch) | |
tree | 63bf8161bc6c2a64217a121cd67d17d8103ccf09 | |
parent | 230a0c1ed92223ffd86383362897abe267c20ffd (diff) | |
download | qt3-8e44169855b956886b93195570ba3157d831f2c9.tar.gz qt3-8e44169855b956886b93195570ba3157d831f2c9.zip |
Fix buildkey for GCC >= 7 if the version is listed including minor numbers.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit e406862ceaa185c6f8e475b6985a539ffd9b9b35)
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2828,7 +2828,7 @@ g++*) 3.*) COMPILER_VERSION="3.*" ;; - [1-9][0-9]|[7-9]|[4-6].*) + [1-9][0-9]|[1-9][0-9].*|[7-9]|[4-9].*) COMPILER_VERSION="4.*" ;; *) |