pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/rust



Module Name:    pkgsrc
Committed By:   tnn
Date:           Thu Mar 12 22:16:45 UTC 2020

Modified Files:
        pkgsrc/lang/rust: Makefile

Log Message:
rust: set MAKE_JOBS_SAFE=no only if BATCH, i.e. if building inside pbulk

It was added so that we have a non-zero change of getting binary packages
in the bulk build. I have a sneaking suspicion that most interactive users
of pkgsrc comment this line out.
Waiting a whole day for rust to build is not acceptable.


To generate a diff of this commit:
cvs rdiff -u -r1.152 -r1.153 pkgsrc/lang/rust/Makefile

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

Modified files:

Index: pkgsrc/lang/rust/Makefile
diff -u pkgsrc/lang/rust/Makefile:1.152 pkgsrc/lang/rust/Makefile:1.153
--- pkgsrc/lang/rust/Makefile:1.152     Thu Mar 12 20:33:53 2020
+++ pkgsrc/lang/rust/Makefile   Thu Mar 12 22:16:44 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.152 2020/03/12 20:33:53 tnn Exp $
+# $NetBSD: Makefile,v 1.153 2020/03/12 22:16:44 tnn Exp $
 
 DISTNAME=      rustc-1.41.1-src
 PKGNAME=       ${DISTNAME:S/rustc/rust/:S/-src//}
@@ -131,7 +131,7 @@ CONFIGURE_ARGS+=    --set llvm.targets="ARM
 .endif
 
 # toolchain/54192, induces rtld issues
-.if ${OPSYS} == "NetBSD"
+.if ${OPSYS} == "NetBSD" && defined(BATCH)
 MAKE_JOBS_SAFE=        no
 .endif
 



Home | Main Index | Thread Index | Old Index