summaryrefslogtreecommitdiff
path: root/emulators
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
parent85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff)
downloadpkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/atari800/Makefile4
-rw-r--r--emulators/freebsd_lib/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/emulators/atari800/Makefile b/emulators/atari800/Makefile
index c31f0f20811..077b894aa16 100644
--- a/emulators/atari800/Makefile
+++ b/emulators/atari800/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2001/03/27 03:19:54 hubertf Exp $
+# $NetBSD: Makefile,v 1.10 2001/05/19 03:56:35 jlam Exp $
DISTNAME= Atari800-0.9.9a
PKGNAME= atari800-0.9.9a
@@ -27,7 +27,7 @@ MAKE_FLAGS= LDFLAGS="${LDFLAGS} -L${X11BASE}/lib" OBJ="atari_x11.o" \
MAKE_ENV+= HOME=${WRKSRC}
post-extract:
- @${FIND} ${WRKDIR} -type f -print | xargs ${CHMOD} 0644
+ @${FIND} ${WRKDIR} -type f -print | ${XARGS} ${CHMOD} 0644
@${MV} ${WRKDIR}/Atari800-0.9.9a/* ${WRKSRC}/
do-build:
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