Received: by mail.netbsd.org (Postfix, from userid 605) id C973F84D9B; Tue, 24 May 2022 09:36:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0D3A884D8A for ; Tue, 24 May 2022 09:36:56 +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 NyPK7CfkSY4X for ; Tue, 24 May 2022 09:36:55 +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 5CDE584C13 for ; Tue, 24 May 2022 09:36:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 212AEFAEB; Tue, 24 May 2022 09:37:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165338506498900" MIME-Version: 1.0 Date: Tue, 24 May 2022 09:37:44 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220524093744.212AEFAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165338506498900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue May 24 09:37:44 UTC 2022 Modified Files: pkgsrc/lang/rust: Makefile Log Message: rust: Use OPSYS_VERSION. To generate a diff of this commit: cvs rdiff -u -r1.256 -r1.257 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165338506498900 Content-Disposition: inline Content-Length: 965 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/Makefile diff -u pkgsrc/lang/rust/Makefile:1.256 pkgsrc/lang/rust/Makefile:1.257 --- pkgsrc/lang/rust/Makefile:1.256 Wed May 18 20:57:28 2022 +++ pkgsrc/lang/rust/Makefile Tue May 24 09:37:43 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.256 2022/05/18 20:57:28 he Exp $ +# $NetBSD: Makefile,v 1.257 2022/05/24 09:37:43 nia Exp $ DISTNAME= rustc-1.59.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -153,16 +153,9 @@ CONFIGURE_ARGS+= --set llvm.targets="ARM # # If we aren't on 9-current, and are on 8.x or 9.x, avoid parallel. # \todo Consider avoiding setting this on netbsd-9 past the fix. -. if ${MACHINE_PLATFORM:MNetBSD-[1-9].*} && !${MACHINE_PLATFORM:MNetBSD-9.99.*} +. if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099957 MAKE_JOBS_SAFE?= no . endif - -# Open PRs -# -# Broken package with PREFIX not /usr/pkg: -# http://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=54453 -# - .endif # --_----------=_165338506498900--