diff options
author | jlam <jlam> | 2001-05-19 03:56:23 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-05-19 03:56:23 +0000 |
commit | 66ad28b277d0af6fb5a0ff2449ff7d4286b6eeab (patch) | |
tree | 35829def2637f8f91ecdb3daaeecb1424685adf2 /emulators | |
parent | 9d24d73ade1b1b7f32d6182c78361801ea624464 (diff) | |
download | pkgsrc-66ad28b277d0af6fb5a0ff2449ff7d4286b6eeab.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/atari800/Makefile | 4 | ||||
-rw-r--r-- | emulators/freebsd_lib/Makefile | 4 |
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 |