Mon Dec 27 01:11:10 2021 UTC ()
lang/neko: not MAKE_JOBS_SAFE. Seen in an aargh64 build a while back.


(dholland)
diff -r1.11 -r1.12 pkgsrc/lang/neko/Makefile

cvs diff -r1.11 -r1.12 pkgsrc/lang/neko/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/neko/Makefile 2021/12/08 16:05:22 1.11
+++ pkgsrc/lang/neko/Makefile 2021/12/27 01:11:10 1.12
@@ -1,22 +1,29 @@ @@ -1,22 +1,29 @@
1# $NetBSD: Makefile,v 1.11 2021/12/08 16:05:22 adam Exp $ 1# $NetBSD: Makefile,v 1.12 2021/12/27 01:11:10 dholland Exp $
2 2
3DISTNAME= neko-2.3.0 3DISTNAME= neko-2.3.0
4PKGREVISION= 9 4PKGREVISION= 9
5CATEGORIES= lang 5CATEGORIES= lang
6MASTER_SITES= ${MASTER_SITE_GITHUB:=HaxeFoundation/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=HaxeFoundation/}
7GITHUB_TAG= v${PKGVERSION_NOREV:S/./-/g} 7GITHUB_TAG= v${PKGVERSION_NOREV:S/./-/g}
8 8
9MAINTAINER= cfkoch@edgebsd.org 9MAINTAINER= cfkoch@edgebsd.org
10HOMEPAGE= https://nekovm.org/ 10HOMEPAGE= https://nekovm.org/
11COMMENT= High-level dynamically typed programming language 11COMMENT= High-level dynamically typed programming language
12LICENSE= mit 12LICENSE= mit
13 13
14TOOL_DEPENDS+= git-base-[0-9]*:../../devel/git-base 14TOOL_DEPENDS+= git-base-[0-9]*:../../devel/git-base
15 15
16USE_CMAKE= yes 16USE_CMAKE= yes
17USE_TOOLS+= pkg-config 17USE_TOOLS+= pkg-config
18 18
 19# Tries to build "bin/nekoc.n, bin/nekoml.n" multiple times at once
 20# and then chokes because nekoc.n won't load. Examination shows that
 21# the makefiles spewed from cmake try to build this element from four
 22# different subdirs at once, which is obviously unsafe, and arguing
 23# with cmake about this sort of thing is a waste of breath.
 24MAKE_JOBS_SAFE= no
 25
19.include "options.mk" 26.include "options.mk"
20.include "../../devel/boehm-gc/buildlink3.mk" 27.include "../../devel/boehm-gc/buildlink3.mk"
21.include "../../devel/zlib/buildlink3.mk" 28.include "../../devel/zlib/buildlink3.mk"
22.include "../../mk/bsd.pkg.mk" 29.include "../../mk/bsd.pkg.mk"