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 /mk/compiler/distcc.mk | |
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 'mk/compiler/distcc.mk')
-rw-r--r-- | mk/compiler/distcc.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/compiler/distcc.mk b/mk/compiler/distcc.mk index 1bdd6b7436a..3ef33edfb14 100644 --- a/mk/compiler/distcc.mk +++ b/mk/compiler/distcc.mk @@ -1,4 +1,4 @@ -# $NetBSD: distcc.mk,v 1.27 2005/01/24 18:20:57 tv Exp $ +# $NetBSD: distcc.mk,v 1.28 2006/07/21 14:27:56 jlam Exp $ # # Copyright (c) 2004 The NetBSD Foundation, Inc. # All rights reserved. @@ -96,13 +96,13 @@ PREPEND_PATH+= ${_DISTCC_DIR}/bin BUILD_DEPENDS+= distcc-[0-9]*:../../devel/distcc . if defined(DISTCC_HOSTS) && !empty(DISTCC_HOSTS) -BUILD_ENV+= DISTCC_HOSTS=${DISTCC_HOSTS:Q} +PKGSRC_MAKE_ENV+= DISTCC_HOSTS=${DISTCC_HOSTS:Q} . endif . if defined(DISTCC_SSH) && !empty(DISTCC_SSH) -BUILD_ENV+= DISTCC_SSH=${DISTCC_SSH:Q} +PKGSRC_MAKE_ENV+= DISTCC_SSH=${DISTCC_SSH:Q} . endif . if defined(DISTCC_VERBOSE) && !empty(DISTCC_VERBOSE) -BUILD_ENV+= DISTCC_VERBOSE=${DISTCC_VERBOSE:Q} +PKGSRC_MAKE_ENV+= DISTCC_VERBOSE=${DISTCC_VERBOSE:Q} . endif # Create symlinks for the compiler into ${WRKDIR}. |