diff options
author | dholland <dholland@pkgsrc.org> | 2011-11-26 19:59:58 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-11-26 19:59:58 +0000 |
commit | c9e9d1c83d17897025fb4c835e6d5d95418a5dfa (patch) | |
tree | 8eccc6409ef2ba6cec640241a762cd5b89ffa840 /devel | |
parent | 37989a3490dbca6ff2c3a723a2c3439803deb0a3 (diff) | |
download | pkgsrc-c9e9d1c83d17897025fb4c835e6d5d95418a5dfa.tar.gz |
Force MKPROFILE=yes to prevent plist divergence. It seems that in a
bootstrapped environment on NetBSD, MKPROFILE defaults to no, but
using the base system's make library it defaults to yes. This seems
like a bug, but I'm not sure where to fix it so I'm going to stick to
working around it for the moment.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/elftoolchain/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/elftoolchain/Makefile b/devel/elftoolchain/Makefile index 26c32309b18..e81d4a4b02e 100644 --- a/devel/elftoolchain/Makefile +++ b/devel/elftoolchain/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2011/11/26 15:50:27 dholland Exp $ +# $NetBSD: Makefile,v 1.4 2011/11/26 19:59:58 dholland Exp $ DISTNAME= elftoolchain-0.5.1 PKGREVISION= 1 @@ -20,6 +20,7 @@ MAKE_JOBS_SAFE= no USE_BSD_MAKEFILE= yes MAKE_ENV+= ${BSD_MAKE_ENV} +MAKE_FLAGS+= MKPROFILE=yes INSTALLATION_DIRS= bin lib INSTALLATION_DIRS+= ${PKGMANDIR}/man1 ${PKGMANDIR}/cat1 ${PKGMANDIR}/html1 |