summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorTorsten Veller <torsten@veller.net>2009-09-06 20:45:57 +0200
committerTorsten Veller <torsten@veller.net>2009-09-06 20:45:57 +0200
commitc5e46ea24b50dc173d175cbd11ec712fdb32724f (patch)
tree45e3bc7339a257f77eec3ef90c6ae6415555735c /eclass
parentBumped MojoMojo (diff)
downloadperl-overlay-c5e46ea24b50dc173d175cbd11ec712fdb32724f.tar.gz
perl-overlay-c5e46ea24b50dc173d175cbd11ec712fdb32724f.tar.bz2
perl-overlay-c5e46ea24b50dc173d175cbd11ec712fdb32724f.zip
Workaround linking issue: cpanp->cpanp-run-perl
Diffstat (limited to 'eclass')
-rw-r--r--eclass/perl-module.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index 6acdca131..9769f1a3e 100644
--- a/eclass/perl-module.eclass
+++ b/eclass/perl-module.eclass
@@ -252,10 +252,10 @@ linkduallifescripts() {
local i ff
if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then
for i in "${DUALLIFESCRIPTS[@]}" ; do
- alternatives_auto_makesym "/usr/bin/${i}" "/usr/bin/${i}-*"
+ alternatives_auto_makesym "/usr/bin/${i}" "/usr/bin/${i}-[0-9]*"
ff=`echo "${ROOT}"/usr/share/man/man1/${i}-${PV}-${P}.1*`
ff=${ff##*.1}
- alternatives_auto_makesym "/usr/share/man/man1/${i}.1${ff}" "/usr/share/man/man1/${i}-*"
+ alternatives_auto_makesym "/usr/share/man/man1/${i}.1${ff}" "/usr/share/man/man1/${i}-[0-9]*"
done
else
pushd "${D}" > /dev/null