summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-02-13 23:48:05 +0000
committerMoonchild <moonchild@palemoon.org>2022-03-21 13:22:03 +0000
commiteaf5edaaa9f163bdb1d1a89701f73c74e9a78ba7 (patch)
treead8b98e5ca78f53e00cc94659ba2f8b394ff2048 /build
parent34aa92b0a957fbe4aff4b2d9c12c38e582c3de79 (diff)
downloadaura-central-eaf5edaaa9f163bdb1d1a89701f73c74e9a78ba7.tar.gz
Issue %7 - Correct the check version number to include .patch version
Diffstat (limited to 'build')
-rw-r--r--build/moz.configure/toolchain.configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure
index 3944c439b..1f2b5ecf0 100644
--- a/build/moz.configure/toolchain.configure
+++ b/build/moz.configure/toolchain.configure
@@ -675,7 +675,7 @@ def compiler(language, host_or_target, c_compiler=None, other_compiler=None,
# Check the compiler version here instead of in `compiler_version` so
# that the `checking` message doesn't pretend the compiler can be used
# to then bail out one line later.
- if info.type == 'gcc' and info.version < '7.1':
+ if info.type == 'gcc' and info.version < '7.1.0':
raise FatalCheckError(
'Only GCC 7.1 or newer is supported (found version %s).'
% info.version)