summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorjlam <jlam>2001-05-19 03:56:23 +0000
committerjlam <jlam>2001-05-19 03:56:23 +0000
commit66ad28b277d0af6fb5a0ff2449ff7d4286b6eeab (patch)
tree35829def2637f8f91ecdb3daaeecb1424685adf2 /misc
parent9d24d73ade1b1b7f32d6182c78361801ea624464 (diff)
downloadpkgsrc-66ad28b277d0af6fb5a0ff2449ff7d4286b6eeab.tar.gz
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'misc')
-rw-r--r--misc/kp/Makefile4
-rw-r--r--misc/tds/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/misc/kp/Makefile b/misc/kp/Makefile
index 6a3477be49f..3e374433823 100644
--- a/misc/kp/Makefile
+++ b/misc/kp/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2001/05/05 19:51:17 jlam Exp $
+# $NetBSD: Makefile,v 1.16 2001/05/19 03:56:38 jlam Exp $
# FreeBSD Id: Makefile,v 1.8 1997/04/20 13:19:32 wosch Exp
#
@@ -15,7 +15,7 @@ USE_X11= yes
pre-configure:
for f in `${FIND} ${WRKDIR}/. -type f -print \
- | xargs ${GREP} -l '/usr/local'`; do \
+ | ${XARGS} ${GREP} -l '/usr/local'`; do \
${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f \
> $$f.pdone && ${MV} $$f.pdone $$f; \
done
diff --git a/misc/tds/Makefile b/misc/tds/Makefile
index f2416eb9554..f3875f0a47c 100644
--- a/misc/tds/Makefile
+++ b/misc/tds/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2001/05/12 16:06:25 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2001/05/19 03:56:38 jlam Exp $
#
DISTNAME= tds-1.4.2
@@ -15,6 +15,6 @@ GNU_CONFIGURE= YES
NO_BUILD= YES
post-patch:
- @${FIND} ${WRKSRC} -type f -name '*.orig' | xargs ${RM} -f
+ @${FIND} ${WRKSRC} -type f -name '*.orig' | ${XARGS} ${RM} -f
.include "../../mk/bsd.pkg.mk"