Received: by mail.netbsd.org (Postfix, from userid 605) id 47DAE84D28; Sun, 24 Sep 2017 21:07:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CFCD184D23 for ; Sun, 24 Sep 2017 21:07:17 +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 bT-9xiv3k04u for ; Sun, 24 Sep 2017 21:07:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3DBD784CE4 for ; Sun, 24 Sep 2017 21:07:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38A22FA9C; Sun, 24 Sep 2017 21:07:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1506287237237150" MIME-Version: 1.0 Date: Sun, 24 Sep 2017 21:07:17 +0000 From: "Sebastian Wiedenroth" Subject: CVS commit: pkgsrc/cross/arm-none-eabi-gcc To: pkgsrc-changes@NetBSD.org Reply-To: wiedi@netbsd.org X-Mailer: log_accum Message-Id: <20170924210717.38A22FA9C@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. --_----------=_1506287237237150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiedi Date: Sun Sep 24 21:07:17 UTC 2017 Modified Files: pkgsrc/cross/arm-none-eabi-gcc: Makefile Log Message: arm-none-eabi-gcc: fix build on SunOS SunOS also needs the libcpp PLIST entries. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 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. --_----------=_1506287237237150 Content-Disposition: inline Content-Length: 787 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.8 pkgsrc/cross/arm-none-eabi-gcc/Makefile:1.9 --- pkgsrc/cross/arm-none-eabi-gcc/Makefile:1.8 Wed Sep 20 03:49:55 2017 +++ pkgsrc/cross/arm-none-eabi-gcc/Makefile Sun Sep 24 21:07:17 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2017/09/20 03:49:55 ryoon Exp $ +# $NetBSD: Makefile,v 1.9 2017/09/24 21:07:17 wiedi Exp $ DISTNAME= gcc-7.2.0 PKGNAME= cross-arm-none-eabi-${DISTNAME} @@ -61,7 +61,7 @@ PLIST_VARS+= libcpp CFLAGS+= -fbracket-depth=1024 .endif -.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD" +.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS" PLIST.libcpp= yes .endif --_----------=_1506287237237150--