diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 11:38:29 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 11:38:29 +0000 |
commit | d187cf241127f78c94fdef8b9b1b3ce091a84556 (patch) | |
tree | c1264347f47b760e9c84b42cb82a5311005c34ac /audio/festvox-hvs/Makefile | |
parent | 30a7caaf158cdcec137ac7d3e17ac7a95247b788 (diff) | |
download | FreeBSD-ports-d187cf241127f78c94fdef8b9b1b3ce091a84556.zip FreeBSD-ports-d187cf241127f78c94fdef8b9b1b3ce091a84556.tar.gz |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'audio/festvox-hvs/Makefile')
-rw-r--r-- | audio/festvox-hvs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/festvox-hvs/Makefile b/audio/festvox-hvs/Makefile index 9a6a976..6ca3c43 100644 --- a/audio/festvox-hvs/Makefile +++ b/audio/festvox-hvs/Makefile @@ -32,8 +32,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: ${MKDIR} ${FHOME} |