diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-11 06:34:17 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-11 06:34:17 +0000 |
commit | c4e71c5e7a56600bcceba68cbed656ef7246e444 (patch) | |
tree | 6b373d2a314b8d27a2d1f47c4cb173dc5c0d7a48 /chat/fugu | |
parent | a057ade2a392070aecc8ee511ae1cab01869b513 (diff) | |
download | pkgsrc-c4e71c5e7a56600bcceba68cbed656ef7246e444.tar.gz |
CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, so
adapt by moving CPPFLAGS settings to top-level, and removing explicit
inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
Diffstat (limited to 'chat/fugu')
-rw-r--r-- | chat/fugu/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chat/fugu/Makefile b/chat/fugu/Makefile index e11a57f3cb0..ab13f349643 100644 --- a/chat/fugu/Makefile +++ b/chat/fugu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/02/16 21:00:26 lukem Exp $ +# $NetBSD: Makefile,v 1.2 2001/06/11 06:34:20 jlam Exp $ # DISTNAME= fugu-1.0 @@ -13,7 +13,7 @@ DEPENDS+= rsaref-2.0p3:../../security/rsaref/ DEPENDS+= py-Pmw>=0.8.5:../../x11/py-Pmw/ GNU_CONFIGURE= YES -CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib" \ - CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/rsaref" +LDFLAGS+= -L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/rsaref .include "../../mk/bsd.pkg.mk" |