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 /archivers/bunzip | |
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 'archivers/bunzip')
-rw-r--r-- | archivers/bunzip/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/bunzip/Makefile b/archivers/bunzip/Makefile index 0e4174da5a3..13930715d01 100644 --- a/archivers/bunzip/Makefile +++ b/archivers/bunzip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2004/01/20 12:07:06 agc Exp $ +# $NetBSD: Makefile,v 1.11 2004/02/08 04:03:15 jlam Exp $ DISTNAME= bunzip021.c PKGNAME= bunzip-0.21 @@ -14,7 +14,7 @@ WRKSRC= ${WRKDIR} USE_BUILDLINK2= # defined do-build: - cd ${WRKSRC} && ${BUILDLINK_CC} ${CFLAGS} -o bunzip ${DISTNAME} + cd ${WRKSRC} && ${CC} ${CFLAGS} -o bunzip ${DISTNAME} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bunzip ${PREFIX}/bin/bunzip |