diff options
author | tron <tron> | 2004-01-26 07:03:15 +0000 |
---|---|---|
committer | tron <tron> | 2004-01-26 07:03:15 +0000 |
commit | 84d45294b05370fc243a11e314d471465b8ddd68 (patch) | |
tree | 85a3e91e31f929a99ed7632091084c1e7a6d4407 /graphics | |
parent | 5455b708d33e3c0aa516acf0522f7fd4861db901 (diff) | |
download | pkgsrc-84d45294b05370fc243a11e314d471465b8ddd68.tar.gz |
Use find(1) with "-print" option because IRIX's "find" will otherwise
not print out anything. Noted by Georh Schwarz in private e-mail.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/netpbm/Makefile | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index 1e62542e7d5..e59527fa9a6 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.87 2004/01/25 15:47:18 tron Exp $ +# $NetBSD: Makefile,v 1.88 2004/01/26 07:03:15 tron Exp $ DISTNAME= netpbm-10.11.8 PKGREVISION= 1 @@ -49,20 +49,20 @@ pre-install: ${RM} -fr ${STAGEDIR} post-install: - cd ${STAGEDIR} && \ - ${MV} link/* lib && \ - ${RM} -rf link man/web && \ - ${MKDIR} share/doc/netpbm && \ - ${CP} ${WRKSRC}/doc/* share/doc/netpbm && \ - ${MV} share/doc/netpbm/*.1 man/man1 && \ - ${MV} misc share/netpbm && \ - ${CHOWN} -R ${BINOWN}:${BINGRP} . && \ - ${FIND} * \! -type d | ${SORT} >${PLIST_SRC} && \ - ${FIND} * -type d | \ - while read DIR; do \ - ${TEST} -d "${PREFIX}/$${DIR}" || \ - ${ECHO} "@dirrm $${DIR}"; \ - done >>${PLIST_SRC} && \ + cd ${STAGEDIR} && \ + ${MV} link/* lib && \ + ${RM} -rf link man/web && \ + ${MKDIR} share/doc/netpbm && \ + ${CP} ${WRKSRC}/doc/* share/doc/netpbm && \ + ${MV} share/doc/netpbm/*.1 man/man1 && \ + ${MV} misc share/netpbm && \ + ${CHOWN} -R ${BINOWN}:${BINGRP} . && \ + ${FIND} * \! -type d -print | ${SORT} >${PLIST_SRC} && \ + ${FIND} * -type d -print | \ + while read DIR; do \ + ${TEST} -d "${PREFIX}/$${DIR}" || \ + ${ECHO} "@dirrm $${DIR}"; \ + done >>${PLIST_SRC} && \ ${PAX} -rwpppm . ${PREFIX} ${RM} -fr ${STAGEDIR} |