pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/compiler Don't rely on gcc version fallthrough for ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/782b6f1d5420
branches:  trunk
changeset: 314486:782b6f1d5420
user:      abs <abs%pkgsrc.org@localhost>
date:      Mon Oct 29 11:53:18 2018 +0000

description:
Don't rely on gcc version fallthrough for GCC_REQD+=8

(Thanks to eagle eyes from leot@)

diffstat:

 mk/compiler/gcc.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 84c565ec3aef -r 782b6f1d5420 mk/compiler/gcc.mk
--- a/mk/compiler/gcc.mk        Mon Oct 29 11:12:13 2018 +0000
+++ b/mk/compiler/gcc.mk        Mon Oct 29 11:53:18 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: gcc.mk,v 1.196 2018/10/28 22:22:19 abs Exp $
+# $NetBSD: gcc.mk,v 1.197 2018/10/29 11:53:18 abs Exp $
 #
 # This is the compiler definition for the GNU Compiler Collection.
 #
@@ -143,7 +143,7 @@
 _GCC7_PATTERNS= 7 7.*
 
 # _GCC8_PATTERNS matches N s.t. 8.0 <= N < 9.
-_GCC8_PATTERNS= 8.*
+_GCC8_PATTERNS= 8 8.*
 
 # _GCC_AUX_PATTERNS matches 8-digit date YYYYMMDD*
 _GCC_AUX_PATTERNS= 20[1-2][0-9][0-1][0-9][0-3][0-9]*



Home | Main Index | Thread Index | Old Index