diff options
author | dholland <dholland@pkgsrc.org> | 2013-11-22 13:38:31 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2013-11-22 13:38:31 +0000 |
commit | 661eb9e1b43c25a02db7a93c3067bc95dd0e2006 (patch) | |
tree | b4439ac9c38afec75d8f903e4d8398d55f2a122f /lang | |
parent | bb49ff3af05e590a5b53a7b5b47d8f8b7150fddc (diff) | |
download | pkgsrc-661eb9e1b43c25a02db7a93c3067bc95dd0e2006.tar.gz |
Revert -r1.5, which is wrong, and instead clear PLATFORM in ALL_ENV.
Setting PLATFORM causes the build system to look for a ${PLATFORM}.make
file; this leads to build failure if a PLATFORM environment variable
leaks in from the outside environment.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/mono2/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lang/mono2/Makefile b/lang/mono2/Makefile index f1a32dbc137..36bd49339ce 100644 --- a/lang/mono2/Makefile +++ b/lang/mono2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2013/11/18 18:14:38 dholland Exp $ +# $NetBSD: Makefile,v 1.6 2013/11/22 13:38:31 dholland Exp $ DISTNAME= mono-2.10.9 PKGREVISION= 4 @@ -18,7 +18,7 @@ BUILD_DEPENDS+= p5-XML-Parser-[0-9]*:../../textproc/p5-XML-Parser CONFLICTS= pnet-[0-9]* mcsim-[0-9]* lc-[0-9]* -ALL_ENV+= MONO_SHARED_DIR=${WRKDIR:Q} +ALL_ENV+= MONO_SHARED_DIR=${WRKDIR:Q} PLATFORM= USE_TOOLS+= bison gmake perl:run pkg-config bash:run msgfmt USE_LIBTOOL= yes @@ -158,10 +158,6 @@ ULIMIT_CMD_datasize= ulimit -d 524288 ULIMIT_CMD_stacksize= ulimit -s 10240 .endif -post-extract: - ${CP} ${WRKSRC}/mcs/build/platforms/linux.make \ - ${WRKSRC}/mcs/build/platforms/netbsd.make - .include "../../devel/gettext-lib/buildlink3.mk" .include "../../lang/python/application.mk" .include "../../textproc/icu/buildlink3.mk" |