diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 11:38:29 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 11:38:29 +0000 |
commit | 39a7f86255001d4b80a591c9e73b6201ee277dda (patch) | |
tree | 6ca34d2b88ef8d4d5b27e8df8b52a5eac7ad64b6 /audio/festdoc/Makefile | |
parent | Upgrade to 0.9.6.2 (diff) |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'audio/festdoc/Makefile')
-rw-r--r-- | audio/festdoc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/festdoc/Makefile b/audio/festdoc/Makefile index b9bfab5cd68b..02b67c8da677 100644 --- a/audio/festdoc/Makefile +++ b/audio/festdoc/Makefile @@ -24,7 +24,7 @@ FDOC= ${PREFIX}/share/doc/festival 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 ${RM} ${WRKSRC}/festival/src-manual/c3750.htm~ ${RM} ${WRKSRC}/speechtools/c16909.htm~ ${RMDIR} ${WRKSRC}/festival/src-manual/images_gen @@ -32,7 +32,7 @@ post-extract: do-install: ${MKDIR} ${FDOC} ${RM} ${WRKSRC}/festival/info/festival.info.orig - cd ${WRKSRC} && info=`find . -name '*.info*' -type f` && \ + cd ${WRKSRC} && info=`${FIND} . -name '*.info*' -type f` && \ ${CP} $$info ${PREFIX}/info && \ ${CP} -r ${WRKSRC}/* ${FDOC} && \ cd ${FDOC} && \ |