diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
commit | c00807be673f4f2bb5250bb34151186d0006749e (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /textproc | |
parent | ede0be0eaa8bfcc8cfdb0b40604997b8ceb055d7 (diff) | |
download | pkgsrc-c00807be673f4f2bb5250bb34151186d0006749e.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/dict-dictionaries/Makefile | 4 | ||||
-rw-r--r-- | textproc/rtf-tools/Makefile | 4 | ||||
-rw-r--r-- | textproc/troffcvt/Makefile | 4 | ||||
-rw-r--r-- | textproc/xalan-c/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/textproc/dict-dictionaries/Makefile b/textproc/dict-dictionaries/Makefile index 9ee25daa848..0cab138d7f2 100644 --- a/textproc/dict-dictionaries/Makefile +++ b/textproc/dict-dictionaries/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2004/01/24 15:13:19 grant Exp $ +# $NetBSD: Makefile,v 1.3 2004/01/27 00:53:10 heinz Exp $ DISTNAME= # PKGNAME= dict-data-1.8.0 @@ -54,7 +54,7 @@ do-build: (cd ${WRKDIR}/$$d; \ ${MAKE_PROGRAM} db); \ done - ${FIND} ${WRKDIR} -name '*.dict' | \ + ${FIND} ${WRKDIR} -name '*.dict' -print | \ while read f; do \ if [ ! -f $${f}.dz ]; then \ ${LOCALBASE}/bin/dictzip $$f; \ diff --git a/textproc/rtf-tools/Makefile b/textproc/rtf-tools/Makefile index 6223fdcc0f4..13e048805f9 100644 --- a/textproc/rtf-tools/Makefile +++ b/textproc/rtf-tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/01/20 12:26:50 agc Exp $ +# $NetBSD: Makefile,v 1.15 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= RTF-1.10 @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR}/rtf INSTALL_TARGET= install install.man post-patch: - for i in `${FIND} ${WRKSRC} -name Makefile`; do \ + for i in `${FIND} ${WRKSRC} -name Makefile -print`; do \ ${MV} $$i $$i.bak;\ ${SED} <$$i.bak >$$i \ -e "s|-DVARARGS|-DSTDARGS|g" \ diff --git a/textproc/troffcvt/Makefile b/textproc/troffcvt/Makefile index cd08f02c5b1..60af12e3e2a 100644 --- a/textproc/troffcvt/Makefile +++ b/textproc/troffcvt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2003/12/24 09:53:50 jmmv Exp $ +# $NetBSD: Makefile,v 1.10 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= troffcvt-1.04 @@ -19,7 +19,7 @@ USE_PERL5= yes INSTALL_TARGET= install install.man post-patch: - for i in `${FIND} ${WRKSRC} -name Makefile`; do \ + for i in `${FIND} ${WRKSRC} -name Makefile -print`; do \ ${MV} $$i $$i.bak;\ ${SED} <$$i.bak >$$i \ -e "s| -Dsun -DSVR4||" \ diff --git a/textproc/xalan-c/Makefile b/textproc/xalan-c/Makefile index 8f07a595f94..2846b834f05 100644 --- a/textproc/xalan-c/Makefile +++ b/textproc/xalan-c/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2004/01/24 15:13:20 grant Exp $ +# $NetBSD: Makefile,v 1.12 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= Xalan-C_1_0-linux @@ -36,7 +36,7 @@ do-install: ${ECHO} creating ${PREFIX}/include/$${i}; \ ${INSTALL_DATA_DIR} ${PREFIX}/include/$${i}; \ done; \ - for i in `find $${XMLDIRS} -type f -name "*.hpp"`; do \ + for i in `find $${XMLDIRS} -type f -name "*.hpp" -print`; do \ ${ECHO} installing ${PREFIX}/include/$${i}; \ ${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/include/$${i}; \ done |