diff options
author | kim <kim@pkgsrc.org> | 2004-09-22 16:14:37 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 2004-09-22 16:14:37 +0000 |
commit | 03b17dde93c2a4f1117bbc99433ea56d6e5e938d (patch) | |
tree | 9bdf46088547952ce6819199b5ce66bb4b930be7 /security | |
parent | 0d09e320300b875047d1941c299869eeacdf0c00 (diff) | |
download | pkgsrc-03b17dde93c2a4f1117bbc99433ea56d6e5e938d.tar.gz |
Pass ${MAKE_ENV} when calling ${MAKE}, so that rules in /etc/mk.conf
(and possibly elsewhere) behave as expected. Without this, the build
framework thinks you are not building a package, but base.
Diffstat (limited to 'security')
-rw-r--r-- | security/racoon/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/racoon/Makefile b/security/racoon/Makefile index 13ddd5bdea6..8afb5073e98 100644 --- a/security/racoon/Makefile +++ b/security/racoon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.68 2004/06/17 03:36:18 itojun Exp $ +# $NetBSD: Makefile,v 1.69 2004/09/22 16:14:37 kim Exp $ # DISTNAME= racoon-20040617a @@ -45,7 +45,7 @@ CONFIGURE_ARGS+=--with-pkgversion=netbsd-pkgsrc-20040617a .endif pre-configure: - (cd ${WRKSRC}/../libipsec; ${MAKE}) + (cd ${WRKSRC}/../libipsec; ${MAKE} ${MAKE_ENV}) post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/racoon |