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-hvs | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'audio/festvox-hvs')
-rw-r--r-- | audio/festvox-hvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/festvox-hvs/Makefile b/audio/festvox-hvs/Makefile index 5bad009224c..395675a367c 100644 --- a/audio/festvox-hvs/Makefile +++ b/audio/festvox-hvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/02/16 13:30:38 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2001/05/19 03:56:27 jlam Exp $ DISTNAME= voice_hvs_di-2.0 PKGNAME= festvox-hvs-2.0 @@ -22,8 +22,8 @@ FHOME= ${PREFIX}/share/festival post-extract: ${CHMOD} -R a+r ${WRKSRC} - ${FIND} ${WRKSRC} -type d -print0 | xargs -0 ${CHMOD} 755 - ${FIND} ${WRKSRC} -type d -name CVS | xargs ${RM} -fr + ${FIND} ${WRKSRC} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 + ${FIND} ${WRKSRC} -type d -name CVS | ${XARGS} ${RM} -fr do-install: ${INSTALL_DATA_DIR} ${FHOME} |