diff options
author | taca <taca@pkgsrc.org> | 2009-06-30 17:11:29 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2009-06-30 17:11:29 +0000 |
commit | 6b206964eaf4db0d4d6a34e466915e0adcbbefaf (patch) | |
tree | 5d82168dc947d450c83f2515bdd094e92a5079f1 /www/squid | |
parent | 43f98c7ca0e3ee8d3abab05514a466a31b1aa57d (diff) | |
download | pkgsrc-6b206964eaf4db0d4d6a34e466915e0adcbbefaf.tar.gz |
Revert generating PLIST for error files except @dirrm.
It was accidently deleted by previous commit.
Also stop using PLIST.common_end here.
It should fix some bulk problem of squid27/squid30/squid31 packages.
Diffstat (limited to 'www/squid')
-rw-r--r-- | www/squid/Makefile.squid | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/squid/Makefile.squid b/www/squid/Makefile.squid index ffc230f32a0..2b03984a9c7 100644 --- a/www/squid/Makefile.squid +++ b/www/squid/Makefile.squid @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.squid,v 1.8 2009/06/14 22:58:10 joerg Exp $ +# $NetBSD: Makefile.squid,v 1.9 2009/06/30 17:11:29 taca Exp $ # # used by www/squid26/Makefile # used by www/squid27/Makefile @@ -79,8 +79,13 @@ post-install: ${CHMOD} -w ${PREFIX}/libexec/pinger ${CP} ${PKGDIR}/PLIST ${PLIST_SRC} ( \ + cd ${WRKSRC}/errors; \ + for i in *; do \ + ${TEST} -d $$i && \ + (${LS} $$i/ERR_* | \ + ${SED} -e 's@^@share/squid/errors/@'); \ + done; \ cd ${WRKSRC}/icons; \ ${LS} anthony-*.gif | \ ${SED} -e 's@^@share/squid/icons/@'; \ ) >>${PLIST_SRC} - ${CAT} ${PKGDIR}/PLIST.common_end >>${PLIST_SRC} |