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 /x11 | |
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 'x11')
-rw-r--r-- | x11/xephem/Makefile | 8 | ||||
-rw-r--r-- | x11/xhangglider/Makefile | 6 |
2 files changed, 7 insertions, 7 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 diff --git a/x11/xhangglider/Makefile b/x11/xhangglider/Makefile index 5729666ff97..d6cba51fcee 100644 --- a/x11/xhangglider/Makefile +++ b/x11/xhangglider/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2006/03/04 21:31:13 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2006/07/21 14:27:56 jlam Exp $ # DISTNAME= xhangglider-0.94.0 @@ -10,8 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.netfort.gr.jp/~take/linux/xhang-en.html COMMENT= Hanggliders fly in the background of the X screen -USE_IMAKE= yes -BUILD_ENV+= PREFIX=${PREFIX} +USE_IMAKE= yes +PKGSRC_MAKE_ENV+= PREFIX=${PREFIX} post-extract: ${RM} ${WRKSRC}/Makefile |