Received: by mail.netbsd.org (Postfix, from userid 605) id 5CDEE84D4E; Tue, 17 Mar 2020 21:33:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D877184D33 for ; Tue, 17 Mar 2020 21:33:25 +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 ixEscz7YcuCG for ; Tue, 17 Mar 2020 21:33:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3295984CD5 for ; Tue, 17 Mar 2020 21:33:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 26200FB27; Tue, 17 Mar 2020 21:33:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158448080596430" MIME-Version: 1.0 Date: Tue, 17 Mar 2020 21:33:25 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/cross/arm-none-eabi-binutils To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200317213325.26200FB27@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. --_----------=_158448080596430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Tue Mar 17 21:33:25 UTC 2020 Modified Files: pkgsrc/cross/arm-none-eabi-binutils: Makefile Log Message: cross/arm-none-eabi-binutils: don't check for unknown configure options This is required when building with GNU_CONFIGURE_STRICT=yes. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/cross/arm-none-eabi-binutils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158448080596430 Content-Disposition: inline Content-Length: 1263 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/arm-none-eabi-binutils/Makefile diff -u pkgsrc/cross/arm-none-eabi-binutils/Makefile:1.9 pkgsrc/cross/arm-none-eabi-binutils/Makefile:1.10 --- pkgsrc/cross/arm-none-eabi-binutils/Makefile:1.9 Sun May 12 06:19:30 2019 +++ pkgsrc/cross/arm-none-eabi-binutils/Makefile Tue Mar 17 21:33:24 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2019/05/12 06:19:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.10 2020/03/17 21:33:24 rillig Exp $ DISTNAME= binutils-2.32 PKGNAME= cross-arm-none-eabi-${DISTNAME} @@ -11,9 +11,10 @@ HOMEPAGE= # empty COMMENT= Cross binutils for bare metal ARM EABI LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3 -USE_LIBTOOL= yes -USE_TOOLS+= gmake makeinfo -GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_TOOLS+= gmake makeinfo +GNU_CONFIGURE= yes +GNU_CONFIGURE_STRICT= no # several sub-configures don't know --enable-nls ARMELF_PREFIX= ${PREFIX}/cross-arm-none-eabi @@ -22,7 +23,8 @@ CONFIGURE_DIRS= ${OBJDIR} CONFIGURE_SCRIPT= ${WRKSRC}/configure GNU_CONFIGURE_PREFIX= ${ARMELF_PREFIX} -CONFIGURE_ARGS+= --disable-werror --target=arm-none-eabi +CONFIGURE_ARGS+= --disable-werror +CONFIGURE_ARGS+= --target=arm-none-eabi CONFIGURE_ARGS+= --disable-nls INFO_FILES= yes --_----------=_158448080596430--