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