Received: by mail.netbsd.org (Postfix, from userid 605) id 3C00D84DC7; Sun, 3 May 2020 12:55:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B82D884DC2 for ; Sun, 3 May 2020 12:55:05 +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 oy-7kyB-lbHf for ; Sun, 3 May 2020 12:55:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 122E984CD4 for ; Sun, 3 May 2020 12:55:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 070A6FB27; Sun, 3 May 2020 12:55:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1588510504124430" MIME-Version: 1.0 Date: Sun, 3 May 2020 12:55:04 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/cross/avr-gcc To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200503125505.070A6FB27@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. --_----------=_1588510504124430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun May 3 12:55:04 UTC 2020 Modified Files: pkgsrc/cross/avr-gcc: Makefile Log Message: cross/avr-gcc: skip portability check, allow unknown configure options To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/cross/avr-gcc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1588510504124430 Content-Disposition: inline Content-Length: 977 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/avr-gcc/Makefile diff -u pkgsrc/cross/avr-gcc/Makefile:1.43 pkgsrc/cross/avr-gcc/Makefile:1.44 --- pkgsrc/cross/avr-gcc/Makefile:1.43 Sun Aug 11 13:18:16 2019 +++ pkgsrc/cross/avr-gcc/Makefile Sun May 3 12:55:04 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2019/08/11 13:18:16 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2020/05/03 12:55:04 rillig Exp $ DISTNAME= gcc-4.8.3 PKGNAME= ${DISTNAME:C/^/avr-/} @@ -13,15 +13,16 @@ LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND DEPENDS+= avr-binutils-[0-9]*:../../cross/avr-binutils -.include "../../mk/bsd.prefs.mk" - GNU_CONFIGURE= yes +GNU_CONFIGURE_STRICT= no # has sub-configures USE_LANGUAGES= c c++03 USE_TOOLS+= bison gmake lex perl tar msgfmt autoconf pod2man USE_PKGLOCALEDIR= yes USE_GNU_CONFIGURE_HOST= no +CHECK_PORTABILITY_SKIP+= contrib/* + CONFIGURE_ARGS+= --target=avr CONFIGURE_ARGS+= --enable-languages='c c++' CONFIGURE_ARGS+= --disable-nls --disable-lto --_----------=_1588510504124430--