summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>1999-12-28 05:28:26 +0000
committerwiz <wiz>1999-12-28 05:28:26 +0000
commitcaad27b61d667eaf97b9fee383aae1d70de1c0d3 (patch)
tree24c619a5cc2832228e2873391867798f057c26d0
parent1f670e3014ca31574515dcbb259cd01536d4fed8 (diff)
downloadpkgsrc-caad27b61d667eaf97b9fee383aae1d70de1c0d3.tar.gz
replaced some commands by their ${COMMAND} counterparts
-rw-r--r--devel/ipv6socket_scrub/Makefile4
-rw-r--r--devel/libnet/Makefile6
-rw-r--r--devel/unproven-pthreads/Makefile8
3 files changed, 9 insertions, 9 deletions
diff --git a/devel/ipv6socket_scrub/Makefile b/devel/ipv6socket_scrub/Makefile
index 165274588e8..92980663066 100644
--- a/devel/ipv6socket_scrub/Makefile
+++ b/devel/ipv6socket_scrub/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1999/11/28 14:37:40 itojun Exp $
+# $NetBSD: Makefile,v 1.4 1999/12/28 05:30:23 wiz Exp $
# KAME Id: Makefile,v 1.6 1999/11/28 14:36:04 itojun Exp
#
@@ -20,7 +20,7 @@ RESTRICTED= "not redistributable, license agreement required"
MIRROR_DISTFILES= no
do-fetch:
- @if test \! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}; then \
+ @if ${TEST} \! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}; then \
${ECHO} "===> You need to sign the agreement on ${HOMEPAGE}"; \
${ECHO} " and fetch on your own."; \
fi
diff --git a/devel/libnet/Makefile b/devel/libnet/Makefile
index 6a47caa5930..0e8eff244f8 100644
--- a/devel/libnet/Makefile
+++ b/devel/libnet/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 1999/11/08 08:25:00 sakamoto Exp $
+# $NetBSD: Makefile,v 1.2 1999/12/28 05:28:26 wiz Exp $
#
DISTNAME= libnet-1.0
@@ -26,8 +26,8 @@ post-install:
${PREFIX}/share/examples/libnet
@${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
@(cd ${PREFIX}; \
- find ${DOCDIR} -type f >> ${PLIST_SRC}; \
- find ${DOCDIR} -type d| ${SED} -e 's|^|@dirrm |' | sort -r \
+ ${FIND} ${DOCDIR} -type f >> ${PLIST_SRC}; \
+ ${FIND} ${DOCDIR} -type d| ${SED} -e 's|^|@dirrm |' | sort -r \
>> ${PLIST_SRC})
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/unproven-pthreads/Makefile b/devel/unproven-pthreads/Makefile
index 1bd0ae8afdf..e29ac23195a 100644
--- a/devel/unproven-pthreads/Makefile
+++ b/devel/unproven-pthreads/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 1999/12/11 00:41:30 explorer Exp $
+# $NetBSD: Makefile,v 1.6 1999/12/28 05:29:12 wiz Exp $
#
DISTNAME= unproven-pthreads-0.9
@@ -20,9 +20,9 @@ pre-install:
post-install:
@${RM} -f ${PREFIX}/pthreads/lib/libpthread_pic.a
- @find ${PREFIX}/pthreads/include -name '*.orig'|xargs rm
- @find ${PREFIX}/pthreads/include -type f -print|xargs chmod 644
- @find ${PREFIX}/pthreads/include -type d -print|xargs chmod 755
+ @find ${PREFIX}/pthreads/include -name '*.orig'|xargs ${RM}
+ @find ${PREFIX}/pthreads/include -type f -print|xargs ${CHMOD} 644
+ @find ${PREFIX}/pthreads/include -type d -print|xargs ${CHMOD} 755
@${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/pthreads/include
.include "../../mk/bsd.pkg.mk"