diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-09-15 15:34:49 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-09-15 15:34:49 +0000 |
commit | 737fe4f44df84c9b506038470ff7c0b8af826aac (patch) | |
tree | 216429a029e776de4ff4de6fee4506eb4a9c6bfe /lang/mono2 | |
parent | 4c529cf9e7faaadc7b0634cf029e25a30d2e17c8 (diff) | |
download | pkgsrc-737fe4f44df84c9b506038470ff7c0b8af826aac.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/mono2')
-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++ |