Received: by mail.netbsd.org (Postfix, from userid 605) id 0379C84DC1; Wed, 20 Sep 2017 03:49:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8A08D84DBA for ; Wed, 20 Sep 2017 03:49:56 +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 MAsu5DptCZNl for ; Wed, 20 Sep 2017 03:49:56 +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 E923684CE2 for ; Wed, 20 Sep 2017 03:49:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E436FFA9A; Wed, 20 Sep 2017 03:49:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1505879395288230" MIME-Version: 1.0 Date: Wed, 20 Sep 2017 03:49:55 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/cross/arm-none-eabi-gcc To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170920034955.E436FFA9A@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. --_----------=_1505879395288230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Wed Sep 20 03:49:55 UTC 2017 Modified Files: pkgsrc/cross/arm-none-eabi-gcc: Makefile Log Message: Fix build under NetBSD/amd64 7.1,i 8.0 BETA and 8.99.2 and supress warnings during extraction with bsdtar To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/cross/arm-none-eabi-gcc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1505879395288230 Content-Disposition: inline Content-Length: 1020 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/arm-none-eabi-gcc/Makefile diff -u pkgsrc/cross/arm-none-eabi-gcc/Makefile:1.7 pkgsrc/cross/arm-none-eabi-gcc/Makefile:1.8 --- pkgsrc/cross/arm-none-eabi-gcc/Makefile:1.7 Thu Aug 31 19:55:19 2017 +++ pkgsrc/cross/arm-none-eabi-gcc/Makefile Wed Sep 20 03:49:55 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2017/08/31 19:55:19 sevan Exp $ +# $NetBSD: Makefile,v 1.8 2017/09/20 03:49:55 ryoon Exp $ DISTNAME= gcc-7.2.0 PKGNAME= cross-arm-none-eabi-${DISTNAME} @@ -14,6 +14,8 @@ HOMEPAGE= # none COMMENT= GCC for bare metal ARM EABI EXTRACT_SUFX= .tar.gz +EXTRACT_USING= bsdtar + # for http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33549 # use makeinfo from pkgsrc/devel/gtexinfo. TOOL_DEPENDS+= gtexinfo>=5.1:../../devel/gtexinfo @@ -59,7 +61,7 @@ PLIST_VARS+= libcpp CFLAGS+= -fbracket-depth=1024 .endif -.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" +.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD" PLIST.libcpp= yes .endif --_----------=_1505879395288230--