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 /net | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'net')
-rw-r--r-- | net/sitescooper/Makefile | 4 | ||||
-rw-r--r-- | net/xipdump/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/sitescooper/Makefile b/net/sitescooper/Makefile index 63fe87f57ec..3a9eb045a00 100644 --- a/net/sitescooper/Makefile +++ b/net/sitescooper/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2003/07/21 17:11:16 martti Exp $ +# $NetBSD: Makefile,v 1.7 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= sitescooper-2.2.8 @@ -27,7 +27,7 @@ do-configure: <${file}.orig >${file} && \ ${RM} ${file}.orig .endfor - ${RM} -rf `${FIND} ${WRKSRC}/* -name CVS -type d` + ${RM} -rf `${FIND} ${WRKSRC}/* -name CVS -type d -print` do-install: .for file in sitescooper rss-to-site subs-to-site diff --git a/net/xipdump/Makefile b/net/xipdump/Makefile index 8bcfdc841a6..e9f0cadc1c2 100644 --- a/net/xipdump/Makefile +++ b/net/xipdump/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2003/10/29 18:43:20 cube Exp $ +# $NetBSD: Makefile,v 1.11 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= xipdump-1.5.4 @@ -23,7 +23,7 @@ LIBS= `${LIBNET_CONFIG} --libs` post-build: @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} - @(cd ${WRKSRC}/data; ${FIND} pkc pkt ! -type d | \ + @(cd ${WRKSRC}/data; ${FIND} pkc pkt ! -type d -print | \ ${SED} -e 's|^|share/xipdump/|' >> ${PLIST_SRC}) @${ECHO} "@dirrm share/xipdump/pkt" >> ${PLIST_SRC} @${ECHO} "@dirrm share/xipdump/pkc" >> ${PLIST_SRC} |