In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/9e17953912c0ab4f21dd642345727a44c388a0af?hp=63dcbd3ae0e96e0423e2d796773dc468817c7ade>
- Log ----------------------------------------------------------------- commit 9e17953912c0ab4f21dd642345727a44c388a0af Author: Chris 'BinGOs' Williams <[email protected]> Date: Wed May 18 00:16:35 2016 +0100 Add 'corpus' to the heuristic for demo or test modules ----------------------------------------------------------------------- Summary of changes: Porting/corelist.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Porting/corelist.pl b/Porting/corelist.pl index 545a102..448cb9d 100755 --- a/Porting/corelist.pl +++ b/Porting/corelist.pl @@ -99,7 +99,7 @@ find( /(\.pm|_pm\.PL)$/ or return; /PPPort\.pm$/ and return; my $module = $File::Find::name; - $module =~ /\b(demo|t|private)\b/ and return; # demo or test modules + $module =~ /\b(demo|t|private|corpus)\b/ and return; # demo or test modules my $version = MM->parse_version($_); defined $version or $version = 'undef'; $version =~ /\d/ and $version = "'$version'"; -- Perl5 Master Repository
