diff options
author | jperkin <jperkin> | 2014-09-15 15:34:49 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2014-09-15 15:34:49 +0000 |
commit | 9c5922e15763312100c086a69183c1915e553853 (patch) | |
tree | 216429a029e776de4ff4de6fee4506eb4a9c6bfe /lang | |
parent | 376e4d2c6b1ad540886b90ade48439bcc1742cba (diff) | |
download | pkgsrc-9c5922e15763312100c086a69183c1915e553853.tar.gz |
Put back MAKE_JOBS_SAFE=no, despite building fine at various MAKE_JOBS levels
I've since observed a couple of failures in bulk builds at MAKE_JOBS=2. The
usual failure mode is
MCS [net_4_0] mono-api-info.exe
error CS0006: Metadata file `../../class/lib/net_2_0/Mono.Cecil.dll' could not be found
or similar (net_4_0 components depending upon unbuilt net_2_0 dependencies).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/mono2/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/mono2/Makefile b/lang/mono2/Makefile index 140aae0a716..c1e576af1a2 100644 --- a/lang/mono2/Makefile +++ b/lang/mono2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2014/09/01 19:18:21 jperkin Exp $ +# $NetBSD: Makefile,v 1.13 2014/09/15 15:34:49 jperkin Exp $ DISTNAME= mono-2.10.9 PKGREVISION= 9 @@ -18,6 +18,9 @@ CONFLICTS= pnet-[0-9]* mcsim-[0-9]* lc-[0-9]* ALL_ENV+= MONO_SHARED_DIR=${WRKDIR:Q} PLATFORM= +# Occasional errors with net_2_0 dlls not being built before later dependents +MAKE_JOBS_SAFE= no + USE_TOOLS+= bison gmake perl:run pkg-config bash:run msgfmt USE_LIBTOOL= yes USE_LANGUAGES+= c c++ |