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 /audio/festvox-us3/Makefile | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'audio/festvox-us3/Makefile')
-rw-r--r-- | audio/festvox-us3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/festvox-us3/Makefile b/audio/festvox-us3/Makefile index 80fe11642c9..19b31e9d3bf 100644 --- a/audio/festvox-us3/Makefile +++ b/audio/festvox-us3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/02/16 13:30:40 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2001/05/19 03:56:31 jlam Exp $ DISTNAME= festvox_us3 PKGNAME= festvox-us3-1.4.0 @@ -27,7 +27,7 @@ ONLY_FOR_PLATFORM= NetBSD-*-i386 post-extract: @ ${CHMOD} -R a+r ${WRKSRC} - @ ${FIND} ${WRKSRC} -type d -print0 | xargs -0 ${CHMOD} 755 + @ ${FIND} ${WRKSRC} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 do-install: cd ${WRKSRC} && ${PAX} -r -w * ${FHOME} |