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 /editors/pico | |
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 'editors/pico')
-rw-r--r-- | editors/pico/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/pico/Makefile b/editors/pico/Makefile index bb52b11228f..b9a11187788 100644 --- a/editors/pico/Makefile +++ b/editors/pico/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2004/02/08 03:00:29 jlam Exp $ +# $NetBSD: Makefile,v 1.49 2004/02/08 04:03:15 jlam Exp $ DISTNAME= pine4.58 PKGNAME= pico-4.6 @@ -33,7 +33,7 @@ MAKE_ENV+= _STRIPFLAG_INSTALL= # debug... do-build: cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ./build ${BUILDNAME} \ - CC="${LIBTOOL} ${BUILDLINK_CC}" \ + CC="${LIBTOOL} ${CC}" \ PREFIX=${PREFIX} OPTIMIZE="${CFLAGS}" do-install: |