pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

rust: Fix MAKE_JOBS_SAFE for 9.1 and onwards.



Module Name:	pkgsrc-wip
Committed By:	Havard Eidnes <he%NetBSD.org@localhost>
Pushed By:	he
Date:		Sun Jul 9 20:26:46 2023 +0000
Changeset:	c5b740e9ee2a14d25a8e87d43c4f6cd87d9e82cf

Modified Files:
	rust/Makefile

Log Message:
rust: Fix MAKE_JOBS_SAFE for 9.1 and onwards.

Mirrors change by mef@ from main pkgsrc.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c5b740e9ee2a14d25a8e87d43c4f6cd87d9e82cf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 rust/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diffs:
diff --git a/rust/Makefile b/rust/Makefile
index 618114b61e..11c4e0019e 100644
--- a/rust/Makefile
+++ b/rust/Makefile
@@ -175,8 +175,8 @@ CHECK_INTERPRETER_SKIP+=	lib/rustlib/src/rust/library/stdarch/ci/dox.sh
 # PR is open for this.)  \todo Understand and fix.
 #
 # 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 ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099957
+# Release 9.x and 9.1 or later is OK.
+.  if ${OPSYS} == "NetBSD" && 090999 < ${OPSYS_VERSION} && ${OPSYS_VERSION} < 090900
 MAKE_JOBS_SAFE?=	no
 .  endif
 


Home | Main Index | Thread Index | Old Index