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 /comms/fidogate | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'comms/fidogate')
-rw-r--r-- | comms/fidogate/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/fidogate/Makefile b/comms/fidogate/Makefile index 71dcea01f3a..ab447c620e6 100644 --- a/comms/fidogate/Makefile +++ b/comms/fidogate/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2004/01/22 07:51:12 grant Exp $ +# $NetBSD: Makefile,v 1.30 2004/01/27 00:53:12 heinz Exp $ # DISTNAME= fidogate-4.4.5 @@ -54,9 +54,9 @@ pre-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/fidogate/sendmail/mailer post-install: - cd ${WRKSRC}/examples && for f in `${FIND} [m-p]* -type d`; do \ + cd ${WRKSRC}/examples && for f in `${FIND} [m-p]* -type d -print`; do \ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/fidogate/$$f; done - cd ${WRKSRC}/examples && for f in `${FIND} README [m-p]* -type f`; do \ + cd ${WRKSRC}/examples && for f in `${FIND} README [m-p]* -type f -print`; do \ ${INSTALL_DATA} $$f ${PREFIX}/share/examples/fidogate/$$f; done cd ${WRKSRC}/sendmail/mailer && ${INSTALL_DATA} ffx.m4 ftn.m4 \ ${PREFIX}/share/fidogate/sendmail/mailer |