From 604741717de689cf9e674e829f91abf3da249599 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 25 Jun 2019 11:41:31 -0600 Subject: [PATCH 1/1] devel/mktodo: Fix location of old perls This had an extra layer of directory structure beyond what typical places old perls are kept. A future commit allows specifying mutiple directories on the command line, which gives full generality. (cherry picked from commit dbe3786586c45ed8ac1fca184a30924630a5dbf0) Signed-off-by: Nicolas R --- dist/Devel-PPPort/devel/mktodo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/Devel-PPPort/devel/mktodo b/dist/Devel-PPPort/devel/mktodo index 2eb9ea3..1cec427 100755 --- a/dist/Devel-PPPort/devel/mktodo +++ b/dist/Devel-PPPort/devel/mktodo @@ -35,7 +35,7 @@ my $outdir = 'parts/todo'; my @perls = sort { $b->{version} <=> $a->{version} } map { { version => `$_ -e 'printf "%.6f", \$]'`, path => $_ } } - ($opt{blead}, grep !/-RC\d+/, glob "$opt{install}/*/bin/perl5.*"); + ($opt{blead}, grep !/-RC\d+/, glob "$opt{install}/bin/perl5.*"); if (exists $opt{'blead-version'}) { $perls[0]{version} = $opt{'blead-version'}; -- 1.8.3.1