diff options
author | jlam <jlam> | 2004-02-08 04:03:14 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-02-08 04:03:14 +0000 |
commit | 8f2b87c36ee608d1ceb4a1cd68b36058bb84f7d4 (patch) | |
tree | 11342275f655e55025aec319c80c509cee054445 /mail/pine | |
parent | 37313347e7d6b7a60d35b783ffcf946c69fa543b (diff) | |
download | pkgsrc-8f2b87c36ee608d1ceb4a1cd68b36058bb84f7d4.tar.gz |
We no longer need to explicitly call ${BUILDLINK_*} for CC, CXX, LIBTOOL,
etc. because the bare variables will point to the correct executables.
Diffstat (limited to 'mail/pine')
-rw-r--r-- | mail/pine/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/pine/Makefile b/mail/pine/Makefile index b809bd83e55..6051bc4058e 100644 --- a/mail/pine/Makefile +++ b/mail/pine/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.82 2004/01/20 10:16:38 hubertf Exp $ +# $NetBSD: Makefile,v 1.83 2004/02/08 04:03:15 jlam Exp $ DISTNAME= pine4.58 PKGNAME= pine-4.58 @@ -60,7 +60,7 @@ do-build: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./build ${BUILDNAME} \ ${LDAPCFLAGS} ${LDAPLIBS} \ PREFIX=${PREFIX} \ - CC="${BUILDLINK_CC} ${CFLAGS} ${LDFLAGS}" + CC="${CC} ${CFLAGS} ${LDFLAGS}" do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/pine ${PREFIX}/bin/ |