Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 770D91A923C for ; Sat, 23 Jan 2021 08:48:59 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id ACBF084D6C; Sat, 23 Jan 2021 08:48:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E7A5284D41 for ; Sat, 23 Jan 2021 08:48:57 +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 8zYsCRYmVHOz for ; Sat, 23 Jan 2021 08:48:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4BF8C84D37 for ; Sat, 23 Jan 2021 08:48:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 44DF1FA9D; Sat, 23 Jan 2021 08:48:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161139173775950" MIME-Version: 1.0 Date: Sat, 23 Jan 2021 08:48:57 +0000 From: "Frederic Cambus" Subject: CVS commit: pkgsrc/devel/binutils To: pkgsrc-changes@NetBSD.org Reply-To: fcambus@netbsd.org X-Mailer: log_accum Message-Id: <20210123084857.44DF1FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161139173775950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fcambus Date: Sat Jan 23 08:48:57 UTC 2021 Modified Files: pkgsrc/devel/binutils: Makefile Log Message: binutils: don't include PLIST.gprof and PLIST.ld on Darwin. gprof and ld cannot be built on Darwin at this point. To generate a diff of this commit: cvs rdiff -u -r1.94 -r1.95 pkgsrc/devel/binutils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161139173775950 Content-Disposition: inline Content-Length: 778 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/binutils/Makefile diff -u pkgsrc/devel/binutils/Makefile:1.94 pkgsrc/devel/binutils/Makefile:1.95 --- pkgsrc/devel/binutils/Makefile:1.94 Thu Jan 7 09:47:47 2021 +++ pkgsrc/devel/binutils/Makefile Sat Jan 23 08:48:57 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.94 2021/01/07 09:47:47 fcambus Exp $ +# $NetBSD: Makefile,v 1.95 2021/01/23 08:48:57 fcambus Exp $ DISTNAME= binutils-2.35.1 PKGREVISION= 4 @@ -59,11 +59,11 @@ PLIST_VARS+= gprof ld gold SunOS CTF .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} != "IRIX" && ${OPSYS} != "AIX" +.if ${OPSYS} != "IRIX" && ${OPSYS} != "AIX" && ${OPSYS} != "Darwin" PLIST.gprof= yes .endif -.if ${OPSYS} != SunOS +.if ${OPSYS} != SunOS && ${OPSYS} != "Darwin" PLIST.ld= yes .endif --_----------=_161139173775950--