diff options
author | jlam <jlam> | 2000-08-28 08:23:03 +0000 |
---|---|---|
committer | jlam <jlam> | 2000-08-28 08:23:03 +0000 |
commit | 3b212591747d475fab17a3014570f9467e32e348 (patch) | |
tree | 5c188f9351026d787ece0d580291f0f9ee01d803 /mk | |
parent | bbe56917cbee26e27dc1ec70a32e9a06e75d0e25 (diff) | |
download | pkgsrc-3b212591747d475fab17a3014570f9467e32e348.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.mk | 6 |
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} |