diff options
author | jlam <jlam> | 2006-07-21 14:27:56 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-07-21 14:27:56 +0000 |
commit | c304f3ed550dc23579dcb615d7d969fb4f5ce67f (patch) | |
tree | 7caa897b86d23c2822e6d9c8f6d7d3dfeb078d5e /mk/build | |
parent | cf44c92a8fd3163b85eec8edcce80a86357533fd (diff) | |
download | pkgsrc-c304f3ed550dc23579dcb615d7d969fb4f5ce67f.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 'mk/build')
-rw-r--r-- | mk/build/bsd.build-vars.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/build/bsd.build-vars.mk b/mk/build/bsd.build-vars.mk index 5b70338890b..af23a9f8be5 100644 --- a/mk/build/bsd.build-vars.mk +++ b/mk/build/bsd.build-vars.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.build-vars.mk,v 1.1 2006/07/05 06:09:15 jlam Exp $ +# $NetBSD: bsd.build-vars.mk,v 1.2 2006/07/21 14:27:56 jlam Exp $ # # BUILD_DIRS is the list of directories in which to perform the build # process. If the directories are relative paths, then they @@ -44,4 +44,4 @@ MAKE_ENV+= ${USETOOLS:DUSETOOLS=${USETOOLS:Q}} # Add these bits to the environment used when invoking the recursive make # processes for build-related phases. # -BUILD_ENV+= PATH=${PATH:Q} +PKGSRC_MAKE_ENV+= PATH=${PATH:Q} |