diff options
author | joerg <joerg@pkgsrc.org> | 2020-05-21 19:47:54 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2020-05-21 19:47:54 +0000 |
commit | 6144c227d620d6fb34248a3fbb44fc49aa89a09a (patch) | |
tree | c8a865d1979629d623513ec49daab50d0d31ba6e /lang | |
parent | e5382aa8a127f87c4f9ccd7f8999e323de538bb1 (diff) | |
download | pkgsrc-6144c227d620d6fb34248a3fbb44fc49aa89a09a.tar.gz |
Restrict MAKE_JOBS_SAFE=no to older-than-current NetBSD.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/rust/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/rust/Makefile b/lang/rust/Makefile index e2be39f04cf..d78924b9a8e 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.166 2020/05/19 09:53:28 jperkin Exp $ +# $NetBSD: Makefile,v 1.167 2020/05/21 19:47:54 joerg Exp $ DISTNAME= rustc-1.43.1-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -129,8 +129,8 @@ CONFIGURE_ARGS+= --debuginfo-level-tests=0 CONFIGURE_ARGS+= --set llvm.targets="ARM;X86" .endif -# toolchain/54192, induces rtld issues -.if ${OPSYS} == "NetBSD" +.if ${OPSYS} == "NetBSD" && !empty(MACHINE_PLATFORM:MNetBSD-9.99.*) && \ + !empty(MACHINE_PLATFORM:MNetBSD-[1-9][0-9].*) MAKE_JOBS_SAFE= no .endif |