diff options
author | wiz <wiz@pkgsrc.org> | 1999-12-28 03:59:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 1999-12-28 03:59:00 +0000 |
commit | e160d249ca9df4f6541e5675dcfea9163923d533 (patch) | |
tree | 391908dcf604fba9717c5eaf00e5cf2dd75483fe /archivers/zip/Makefile | |
parent | 6c61c9d4d969d91ed8cd58aa1e41e3440b532c65 (diff) | |
download | pkgsrc-e160d249ca9df4f6541e5675dcfea9163923d533.tar.gz |
replaced some commands by their ${COMMAND} counterparts
Diffstat (limited to 'archivers/zip/Makefile')
-rw-r--r-- | archivers/zip/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archivers/zip/Makefile b/archivers/zip/Makefile index 1f2b54345c6..ed44713b13a 100644 --- a/archivers/zip/Makefile +++ b/archivers/zip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1999/12/13 13:15:22 rh Exp $ +# $NetBSD: Makefile,v 1.17 1999/12/28 03:59:01 wiz Exp $ # FreeBSD Id: Makefile,v 1.10 1997/04/27 16:06:15 ache Exp # @@ -35,8 +35,8 @@ do-install: ${INSTALL_PROGRAM} zip zipnote zipsplit zipcloak ${PREFIX}/bin cd ${WRKSRC}/man && \ ${INSTALL_MAN} zip.1 ${PREFIX}/man/man1 - ln -f -s zip.1 ${PREFIX}/man/man1/zipcloak.1 - ln -f -s zip.1 ${PREFIX}/man/man1/zipnote.1 - ln -f -s zip.1 ${PREFIX}/man/man1/zipsplit.1 + ${LN} -f -s zip.1 ${PREFIX}/man/man1/zipcloak.1 + ${LN} -f -s zip.1 ${PREFIX}/man/man1/zipnote.1 + ${LN} -f -s zip.1 ${PREFIX}/man/man1/zipsplit.1 .include "../../mk/bsd.pkg.mk" |