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 | e549eda62de5704190ac820950608797040d2279 (patch) | |
tree | 7caa897b86d23c2822e6d9c8f6d7d3dfeb078d5e /x11/xephem | |
parent | 7a20b1e9ce43007cd7486abf33071f89d768dfc8 (diff) | |
download | pkgsrc-e549eda62de5704190ac820950608797040d2279.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 'x11/xephem')
-rw-r--r-- | x11/xephem/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11/xephem/Makefile b/x11/xephem/Makefile index cfaf1be9610..533c1c4f752 100644 --- a/x11/xephem/Makefile +++ b/x11/xephem/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2006/07/02 10:45:30 rillig Exp $ +# $NetBSD: Makefile,v 1.43 2006/07/21 14:27:56 jlam Exp $ DISTNAME= xephem-3.7.1 PKGREVISION= 1 @@ -32,9 +32,9 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/GUI/xephem USE_TOOLS+= gmake perl:run REPLACE_PERL+= auxil/*.pl -LIBS.SunOS+= -lnsl -lsocket -X11_LDFLAGS+= ${LIBS} -BUILD_ENV+= X11_LDFLAGS=${X11_LDFLAGS:Q} +LIBS.SunOS+= -lnsl -lsocket +X11_LDFLAGS+= ${LIBS} +PKGSRC_MAKE_ENV+= X11_LDFLAGS=${X11_LDFLAGS:Q} REPLACE_INTERPRETER+= perl REPLACE.perl.old= .*/bin/perl |