diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-21 14:27:56 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-21 14:27:56 +0000 |
commit | 7d1f4cca8ee69154c87d9e612cf7eab8c03b9563 (patch) | |
tree | 7caa897b86d23c2822e6d9c8f6d7d3dfeb078d5e /editors | |
parent | bf3813d3f65b79dbd601ae45f32ab3758fa72e5f (diff) | |
download | pkgsrc-7d1f4cca8ee69154c87d9e612cf7eab8c03b9563.tar.gz |
"BUILD_ENV" was misnamed. It's actually the environment that is passed
to all internal recursive make processes. As such, rename it to
"PKGSRC_MAKE_ENV".
XXX Note, some of the usage of this variable in package Makefiles seems
XXX incorrect. They probably want "MAKE_ENV", which is the environment
XXX passed to the make process when running "make" within ${WRKSRC}.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/jde/Makefile | 6 | ||||
-rw-r--r-- | editors/speedbar/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/editors/jde/Makefile b/editors/jde/Makefile index a116072c753..d555e2a242b 100644 --- a/editors/jde/Makefile +++ b/editors/jde/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2006/03/10 23:58:47 rillig Exp $ +# $NetBSD: Makefile,v 1.20 2006/07/21 14:27:56 jlam Exp $ # DISTNAME= jde-2.3.2 @@ -27,8 +27,8 @@ EMACS_VERSIONS_ACCEPTED=emacs21 # XXX Won't compile with emacs20... PKG_DEFAULT_JVM= sun-jdk14 -BUILD_ENV+= EMACS=${EMACS} -MAKE_ENV+= EMACS_LISPPREFIX=${EMACS_LISPPREFIX:Q} +PKGSRC_MAKE_ENV+= EMACS=${EMACS} +MAKE_ENV+= EMACS_LISPPREFIX=${EMACS_LISPPREFIX:Q} NO_CONFIGURE= yes diff --git a/editors/speedbar/Makefile b/editors/speedbar/Makefile index 702db399faa..25f45b68433 100644 --- a/editors/speedbar/Makefile +++ b/editors/speedbar/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2006/03/20 04:59:08 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2006/07/21 14:27:56 jlam Exp $ # DISTNAME= speedbar-0.14beta4 @@ -13,7 +13,7 @@ COMMENT= Directory and code browser for emacs .include "../../mk/emacs.mk" -BUILD_ENV+= EMACS=${EMACS} +PKGSRC_MAKE_ENV+= EMACS=${EMACS} NO_CONFIGURE= yes USE_TOOLS+= gmake |