Received: by mail.netbsd.org (Postfix, from userid 605) id A9CD684E3F; Mon, 29 Oct 2018 14:42:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 02D8684DC8 for ; Mon, 29 Oct 2018 14:42:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id jjKW8qrdYkTV for ; Mon, 29 Oct 2018 14:42:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6DF6784CD8 for ; Mon, 29 Oct 2018 14:42:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 63701FBEE; Mon, 29 Oct 2018 14:42:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1540824128261100" MIME-Version: 1.0 Date: Mon, 29 Oct 2018 14:42:08 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/sysutils/acpica-utils To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20181029144208.63701FBEE@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. --_----------=_1540824128261100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Mon Oct 29 14:42:08 UTC 2018 Modified Files: pkgsrc/sysutils/acpica-utils: Makefile Log Message: Adjust CC_VERSION check from gcc-8* to gcc-[89]* To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/sysutils/acpica-utils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1540824128261100 Content-Disposition: inline Content-Length: 646 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/acpica-utils/Makefile diff -u pkgsrc/sysutils/acpica-utils/Makefile:1.11 pkgsrc/sysutils/acpica-utils/Makefile:1.12 --- pkgsrc/sysutils/acpica-utils/Makefile:1.11 Sat Oct 27 21:44:53 2018 +++ pkgsrc/sysutils/acpica-utils/Makefile Mon Oct 29 14:42:08 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2018/10/27 21:44:53 abs Exp $ +# $NetBSD: Makefile,v 1.12 2018/10/29 14:42:08 abs Exp $ # DISTNAME= acpica-unix2-20160930 @@ -54,7 +54,7 @@ do-test: .include "../../mk/compiler.mk" -.if !empty(CC_VERSION:Mgcc-8*) +.if !empty(CC_VERSION:Mgcc-[89]*) CFLAGS+= -Wno-error=format-truncation .endif --_----------=_1540824128261100--