Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E215A84EF1 for ; Fri, 30 Jun 2023 12:38:41 +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 N4ITeYxZa80N for ; Fri, 30 Jun 2023 12:38:41 +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 3CF9B84DA5 for ; Fri, 30 Jun 2023 12:38:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 363CCFA89; Fri, 30 Jun 2023 12:38:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688128720173570" MIME-Version: 1.0 Date: Fri, 30 Jun 2023 12:38:40 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20230630123841.363CCFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688128720173570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Fri Jun 30 12:38:40 UTC 2023 Modified Files: pkgsrc/lang/rust: Makefile Log Message: (lang/rust) MAKE_JOBS_SAFE?= yes for NetBSD/9.1 .. 9.8 Recover following change which has been lost at recent update. revision 1.278 date: 2023-03-28 18:06:15 +0900; author: mef; state: Exp; lines: +5 -1; commitid: FJJBoBKCQp4s1SiE; To generate a diff of this commit: cvs rdiff -u -r1.284 -r1.285 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688128720173570 Content-Disposition: inline Content-Length: 898 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.284 pkgsrc/lang/rust/Makefile:1.285 --- pkgsrc/lang/rust/Makefile:1.284 Mon Jun 19 14:46:47 2023 +++ pkgsrc/lang/rust/Makefile Fri Jun 30 12:38:40 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.284 2023/06/19 14:46:47 bsiegert Exp $ +# $NetBSD: Makefile,v 1.285 2023/06/30 12:38:40 mef Exp $ DISTNAME= rustc-1.69.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -175,6 +175,10 @@ CHECK_INTERPRETER_SKIP+= lib/rustlib/src # # 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. +# Release 9.x and 9.1 or later is OK +. if ${OPSYS} == "NetBSD" && 090099 < ${OPSYS_VERSION} && ${OPSYS_VERSION} < 090900 +MAKE_JOBS_SAFE?= yes +. endif . if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099957 MAKE_JOBS_SAFE?= no . endif --_----------=_1688128720173570--