summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-08-28 08:23:03 +0000
committerjlam <jlam@pkgsrc.org>2000-08-28 08:23:03 +0000
commitcd7e109f65f929a74b345cb382e8cc8ea087a0cd (patch)
tree5c188f9351026d787ece0d580291f0f9ee01d803 /mk
parentb63b75fc873df679144c776df04aaaf42e0c719d (diff)
downloadpkgsrc-cd7e109f65f929a74b345cb382e8cc8ea087a0cd.tar.gz
Correct thinko which caused p5-Tk to not register installation correctly.
"/X/" was mistakenly replaced with "/", which broke the translation of the packlist to a correct PLIST.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 06384d0d54f..ad9c09e7c4c 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.551 2000/08/27 02:15:49 jlam Exp $
+# $NetBSD: bsd.pkg.mk,v 1.552 2000/08/28 08:23:03 jlam Exp $
#
# This file is in the public domain.
#
@@ -3150,10 +3150,10 @@ MANZ_EXPRESSION=
PERL5_COMMENT= ( ${ECHO} "@comment The following lines are automatically generated"; \
${ECHO} "@comment from the installed .packlist files." ) >> ${PLIST}
PERL5_PACKLIST_FILES= ( ${CAT} ${PERL5_PACKLIST}; for f in ${PERL5_PACKLIST}; do [ ! -f $$f ] || echo $$f; done ) \
- | ${SED} -e "s,/./,/,g" -e "s,${PREFIX}/,," \
+ | ${SED} -e "s,/\./,/,g" -e "s,${PREFIX}/,," \
| sort -u >> ${PLIST}
PERL5_PACKLIST_DIRS= ( ${CAT} ${PERL5_PACKLIST}; for f in ${PERL5_PACKLIST}; do [ ! -f $$f ] || echo $$f; done ) \
- | ${SED} -e "s,/./,/,g" -e "s,${PREFIX}/,," \
+ | ${SED} -e "s,/\./,/,g" -e "s,${PREFIX}/,," \
-e "s,^,@unexec rmdir -p %D/," \
-e "s,/[^/]*$$, 2>/dev/null || true," \
| sort -ur >> ${PLIST}