summaryrefslogtreecommitdiff
path: root/emulators/freebsd_lib
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-05-19 03:56:23 +0000
committerjlam <jlam@pkgsrc.org>2001-05-19 03:56:23 +0000
commitdc6eadbf21d06496bbf555e397f79622e3e20821 (patch)
tree35829def2637f8f91ecdb3daaeecb1424685adf2 /emulators/freebsd_lib
parent85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff)
downloadpkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'emulators/freebsd_lib')
-rw-r--r--emulators/freebsd_lib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/freebsd_lib/Makefile b/emulators/freebsd_lib/Makefile
index 2da196f0866..8ee27c5dfa9 100644
--- a/emulators/freebsd_lib/Makefile
+++ b/emulators/freebsd_lib/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2001/02/17 18:38:17 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2001/05/19 03:56:35 jlam Exp $
#
DISTNAME= freebsd_lib-2.2.7
@@ -16,7 +16,7 @@ NO_WRKSUBDIR= yes
do-install:
@${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd
@(cd ${WRKSRC} && ${FIND} usr -type d -print) | \
- (cd ${PREFIX}/emul/freebsd && xargs ${INSTALL_DATA_DIR})
+ (cd ${PREFIX}/emul/freebsd && ${XARGS} ${INSTALL_DATA_DIR})
@cd ${WRKSRC} && for file in `${FIND} usr -name '*.*' -print`; do \
${INSTALL_DATA} $$file ${PREFIX}/emul/freebsd/$$file; \
done