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 /lang/fort77 | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'lang/fort77')
-rw-r--r-- | lang/fort77/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/fort77/Makefile b/lang/fort77/Makefile index 431a7c65c54..923714584cb 100644 --- a/lang/fort77/Makefile +++ b/lang/fort77/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/02/17 09:07:06 agc Exp $ +# $NetBSD: Makefile,v 1.8 2001/05/19 03:56:36 jlam Exp $ # DISTNAME= fort77-1.14a @@ -27,7 +27,7 @@ ALL_TARGET= test USE_PERL5= YES post-patch: - for f in `${FIND} ${WRKDIR} -type f -print|xargs ${GREP} -l '/usr'`; \ + for f in `${FIND} ${WRKDIR} -type f -print | ${XARGS} ${GREP} -l '/usr'`; \ do \ ${SED} -e 's:/usr:'${PREFIX}':g' <$$f >$$f.pdone && \ ${MV} $$f.pdone $$f; \ |