diff options
author | jlam <jlam> | 2006-07-21 14:27:56 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-07-21 14:27:56 +0000 |
commit | 7c375bb09c26817a5fb7a2764ce063e868e2bf4b (patch) | |
tree | 7caa897b86d23c2822e6d9c8f6d7d3dfeb078d5e /devel/elib | |
parent | 6b8cf87c2b4bce8f4063c03ce87380b79c160aa3 (diff) | |
download | pkgsrc-7c375bb09c26817a5fb7a2764ce063e868e2bf4b.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 'devel/elib')
-rw-r--r-- | devel/elib/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/elib/Makefile.common b/devel/elib/Makefile.common index 76d96bb5805..c2cce4886a6 100644 --- a/devel/elib/Makefile.common +++ b/devel/elib/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2006/05/26 19:33:36 joerg Exp $ +# $NetBSD: Makefile.common,v 1.2 2006/07/21 14:27:56 jlam Exp $ # DISTNAME= elib-1.0 @@ -10,8 +10,8 @@ COMMENT= Library of utility functions for Emacs .include "../../mk/emacs.mk" -BUILD_ENV+= EMACS=${EMACS_FLAVOR:Q} -MAKEFLAGS+= EMACS=${EMACS_FLAVOR:Q} +PKGSRC_MAKE_ENV+= EMACS=${EMACS_FLAVOR:Q} +MAKEFLAGS+= EMACS=${EMACS_FLAVOR:Q} NO_CONFIGURE= yes USE_TOOLS+= gmake makeinfo |