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 | a1c40fc01e1737a857b8fa9bb6d54626ea356936 (patch) | |
tree | 11342275f655e55025aec319c80c509cee054445 /archivers/unlzx/Makefile | |
parent | 7edd809ba5c320a75e8b07a38b5185ffba678b14 (diff) | |
download | pkgsrc-a1c40fc01e1737a857b8fa9bb6d54626ea356936.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/unlzx/Makefile')
-rw-r--r-- | archivers/unlzx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/unlzx/Makefile b/archivers/unlzx/Makefile index 0bbf2f08446..41ec47d540d 100644 --- a/archivers/unlzx/Makefile +++ b/archivers/unlzx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2004/01/20 12:07:07 agc Exp $ +# $NetBSD: Makefile,v 1.13 2004/02/08 04:03:15 jlam Exp $ DISTNAME= unlzx.c PKGNAME= unlzx-1.1 @@ -14,7 +14,7 @@ WRKSRC= ${WRKDIR} USE_BUILDLINK2= # defined do-build: - cd ${WRKSRC} && ${BUILDLINK_CC} ${CFLAGS} -o unlzx unlzx.c + cd ${WRKSRC} && ${CC} ${CFLAGS} -o unlzx unlzx.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/unlzx ${PREFIX}/bin |