diff options
author | jlam <jlam@pkgsrc.org> | 2004-02-08 04:03:14 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-02-08 04:03:14 +0000 |
commit | a910f55f9d5f1e24bb250e590e9861f53d7556e4 (patch) | |
tree | 11342275f655e55025aec319c80c509cee054445 /mail/pine/Makefile | |
parent | 6e37b7b189fcbbc8c84c1412507dbc8e34556062 (diff) | |
download | pkgsrc-a910f55f9d5f1e24bb250e590e9861f53d7556e4.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/Makefile')
-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/ |