summaryrefslogtreecommitdiff
path: root/editors/abiword
diff options
context:
space:
mode:
authortv <tv>2006-11-10 16:50:54 +0000
committertv <tv>2006-11-10 16:50:54 +0000
commit2f6cb7313040ebec98fbc07e7626711312b49485 (patch)
treecb1e433da59a585562d51d74be125c5a8bb6f303 /editors/abiword
parent1fb06dde049f751fe8d860c0dab4a2898d31aa5e (diff)
downloadpkgsrc-2f6cb7313040ebec98fbc07e7626711312b49485.tar.gz
Use find -print | xargs rather than find -exec.
Diffstat (limited to 'editors/abiword')
-rw-r--r--editors/abiword/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile
index 4032139e2d7..7add662520f 100644
--- a/editors/abiword/Makefile
+++ b/editors/abiword/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.105 2006/11/09 15:25:32 adam Exp $
+# $NetBSD: Makefile,v 1.106 2006/11/10 16:53:28 tv Exp $
.include "Makefile.common"
@@ -43,9 +43,9 @@ post-build:
ABI_DOC_DEST=${WRKDIR} \
ABI_DOC_PROG=${WRKSRC}/src/wp/main/unix/AbiWord-2.4 \
./make-html.sh
- find ${WRKDIR}/help -type d -exec ${CHMOD} ${PKGDIRMODE} "{}" \;
+ find ${WRKDIR}/help -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE}
find ${WRKDIR}/help \( -name "*.abw.orig" -or -name "*.abw" \
- -or -name "*.info" -or -name "*.xhtml" \) -exec ${RM} "{}" \;
+ -or -name "*.info" -or -name "*.xhtml" \) -print | ${XARGS} ${RM} -f
post-install:
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/abiword-docs/man/abiword.1 \