summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>1999-12-28 03:59:00 +0000
committerwiz <wiz>1999-12-28 03:59:00 +0000
commit5e4d40130b145ec4fe5cc6641dcdd992867ac47c (patch)
tree391908dcf604fba9717c5eaf00e5cf2dd75483fe
parent528b51f57c27d7dde41cc7e28b2e094d10e8c46b (diff)
downloadpkgsrc-5e4d40130b145ec4fe5cc6641dcdd992867ac47c.tar.gz
replaced some commands by their ${COMMAND} counterparts
-rw-r--r--archivers/unzip/Makefile4
-rw-r--r--archivers/zip/Makefile8
-rw-r--r--archivers/zip1/Makefile4
3 files changed, 8 insertions, 8 deletions
diff --git a/archivers/unzip/Makefile b/archivers/unzip/Makefile
index a95add8d072..540e1c65a87 100644
--- a/archivers/unzip/Makefile
+++ b/archivers/unzip/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 1999/08/18 09:20:00 agc Exp $
+# $NetBSD: Makefile,v 1.21 1999/12/28 03:59:00 wiz Exp $
# FreeBSD Id: Makefile,v 1.14 1997/06/19 05:30:04 ache Exp
#
@@ -28,7 +28,7 @@ MIRROR_DISTFILE=no
# This bootstrap is ugly, but zcrypt is only shipped as a zipfile.
pre-build:
- @cd ${WRKSRC}; test -f README.CR || ( \
+ @cd ${WRKSRC}; ${TEST} -f README.CR || ( \
${ECHO} '*** Building stage 1 of 2--unzip without encryption.' && \
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} unzip && \
./unzip -qo ${DISTDIR}/zcrypt28.zip && \
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"
diff --git a/archivers/zip1/Makefile b/archivers/zip1/Makefile
index 932246499b5..a7f566942a0 100644
--- a/archivers/zip1/Makefile
+++ b/archivers/zip1/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1999/08/18 09:20:01 agc Exp $
+# $NetBSD: Makefile,v 1.7 1999/12/28 03:59:01 wiz Exp $
#
DISTNAME= zip1-1.1
@@ -38,7 +38,7 @@ do-install:
cd ${WRKSRC} && ${INSTALL_MAN} zip.1 ${PREFIX}/man/man1/zip1.1
.if defined(ZIP_ENCRYPTION)
cd ${WRKSRC} && ${INSTALL_PROGRAM} zipcloak ${PREFIX}/bin/zipcloak1
- ln -fs zip1.1 ${PREFIX}/man/man1/zipcloak1.1
+ ${LN} -fs zip1.1 ${PREFIX}/man/man1/zipcloak1.1
@${ECHO} >>${PLIST_SRC} "bin/zipcloak1"
@${ECHO} >>${PLIST_SRC} "man/man1/zipcloak1.1"
.endif