diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-19 03:56:23 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-19 03:56:23 +0000 |
commit | dc6eadbf21d06496bbf555e397f79622e3e20821 (patch) | |
tree | 35829def2637f8f91ecdb3daaeecb1424685adf2 /sysutils/rtty | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'sysutils/rtty')
-rw-r--r-- | sysutils/rtty/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/rtty/Makefile b/sysutils/rtty/Makefile index 24fb8a4bb69..d16251d3023 100644 --- a/sysutils/rtty/Makefile +++ b/sysutils/rtty/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2001/02/17 17:42:17 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2001/05/19 03:56:40 jlam Exp $ # FreeBSD Id: Makefile,v 1.3 1997/01/06 12:13:36 jkh Exp # @@ -14,7 +14,7 @@ NO_WRKSUBDIR= yes pre-configure: ${CHMOD} -R u+w ${WRKDIR} - for f in `${FIND} ${WRKDIR}/. -type f -print|xargs ${GREP} -l '/usr/local'`; do \ + for f in `${FIND} ${WRKDIR}/. -type f -print | ${XARGS} ${GREP} -l '/usr/local'`; do \ ${ECHO} patching $$f ; \ ${SED} -e 's:/usr/local:${PREFIX}:g' $$f > $$f.pdone && ${MV} $$f.pdone $$f; \ done |