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 C7F3D1A9217 for ; Sun, 3 Jan 2021 18:28:07 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0E2DF84D6A; Sun, 3 Jan 2021 18:28:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 46DB584D62 for ; Sun, 3 Jan 2021 18:28:06 +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 vjqgrs_1MnDL for ; Sun, 3 Jan 2021 18:28:05 +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 8D07984D21 for ; Sun, 3 Jan 2021 18:28:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7C810FA9D; Sun, 3 Jan 2021 18:28:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160969848563270" MIME-Version: 1.0 Date: Sun, 3 Jan 2021 18:28:05 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/devel/libatomic-links To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20210103182805.7C810FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160969848563270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Sun Jan 3 18:28:05 UTC 2021 Modified Files: pkgsrc/devel/libatomic-links: Makefile Log Message: Allow this to be installed on i386 too. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/libatomic-links/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160969848563270 Content-Disposition: inline Content-Length: 1236 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libatomic-links/Makefile diff -u pkgsrc/devel/libatomic-links/Makefile:1.2 pkgsrc/devel/libatomic-links/Makefile:1.3 --- pkgsrc/devel/libatomic-links/Makefile:1.2 Sat Dec 12 01:39:37 2020 +++ pkgsrc/devel/libatomic-links/Makefile Sun Jan 3 18:28:05 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/12/12 01:39:37 gutteridge Exp $ +# $NetBSD: Makefile,v 1.3 2021/01/03 18:28:05 he Exp $ PKGNAME= libatomic-links-1.0 CATEGORIES= devel @@ -7,7 +7,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Make libatomic available from a unique directory LICENSE= 2-clause-bsd -ONLY_FOR_PLATFORM= NetBSD-*-powerpc +ONLY_FOR_PLATFORM+= NetBSD-*-powerpc +ONLY_FOR_PLATFORM+= NetBSD-*-i386 DEPENDS+= libatomic-[0-9]*:../../devel/libatomic @@ -31,7 +32,6 @@ INSTALLATION_DIRS+= lib/libatomic do-patch: @${DO_NADA} -.if (${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "powerpc") # Only needed here so far; need stems from rust which wants -latomic # but rust most probably should not always search /usr/pkg/lib do-install: @@ -39,6 +39,5 @@ do-install: b=$$(basename $$f); \ ${LN} -s -f $$f ${DESTDIR}${PREFIX}/lib/libatomic/$$b; \ done -.endif .include "../../mk/bsd.pkg.mk" --_----------=_160969848563270--