diff options
author | tv <tv> | 2006-11-10 16:50:54 +0000 |
---|---|---|
committer | tv <tv> | 2006-11-10 16:50:54 +0000 |
commit | cda57639c4d3856f3e07ef846e6224ed931cdaa0 (patch) | |
tree | cb1e433da59a585562d51d74be125c5a8bb6f303 /editors | |
parent | 558021fbb62b0065b9ef6e30e7c23c7c5c00479b (diff) | |
download | pkgsrc-cda57639c4d3856f3e07ef846e6224ed931cdaa0.tar.gz |
Use find -print | xargs rather than find -exec.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/abiword/Makefile | 6 |
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 \ |