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 | 18a916d5e6481b140ffb5e120e09d36645a44a11 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /textproc/troffcvt/Makefile | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'textproc/troffcvt/Makefile')
-rw-r--r-- | textproc/troffcvt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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||" \ |