Received: by mail.netbsd.org (Postfix, from userid 605) id 25D0D84E34; Mon, 29 Oct 2018 11:53:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 341D984E33 for ; Mon, 29 Oct 2018 11:53:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id VuKl2xpngei3 for ; Mon, 29 Oct 2018 11:53:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 63A8B84DF5 for ; Mon, 29 Oct 2018 11:53:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5DA03FBEE; Mon, 29 Oct 2018 11:53:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1540813998253040" MIME-Version: 1.0 Date: Mon, 29 Oct 2018 11:53:18 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/mk/compiler To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20181029115318.5DA03FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1540813998253040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Mon Oct 29 11:53:18 UTC 2018 Modified Files: pkgsrc/mk/compiler: gcc.mk Log Message: Don't rely on gcc version fallthrough for GCC_REQD+=8 (Thanks to eagle eyes from leot@) To generate a diff of this commit: cvs rdiff -u -r1.196 -r1.197 pkgsrc/mk/compiler/gcc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1540813998253040 Content-Disposition: inline Content-Length: 709 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/compiler/gcc.mk diff -u pkgsrc/mk/compiler/gcc.mk:1.196 pkgsrc/mk/compiler/gcc.mk:1.197 --- pkgsrc/mk/compiler/gcc.mk:1.196 Sun Oct 28 22:22:19 2018 +++ pkgsrc/mk/compiler/gcc.mk Mon Oct 29 11:53:18 2018 @@ -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 @@ _GCC6_PATTERNS= 6 6.* _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]* --_----------=_1540813998253040--