From: Rafael Garcia-Suarez Date: Tue, 13 Apr 2010 16:03:18 +0000 (+0200) Subject: Reintroduce a lot of missing modules into perlmodlib.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=955fcc32c6c4d0781352c1380c640af78e7371e5;p=p5sagit%2Fp5-mst-13.2.git Reintroduce a lot of missing modules into perlmodlib.pod That was due to the great move of dual-life modules into cpan/ and dist/. This fixes the bug: [perl #74332] lots of modules missing from perlmodlib. --- diff --git a/pod/perlmodlib.PL b/pod/perlmodlib.PL index 78bd59c..dc2faf2 100644 --- a/pod/perlmodlib.PL +++ b/pod/perlmodlib.PL @@ -18,7 +18,7 @@ my (@pragma, @mod, @files); open (MANIFEST, "../MANIFEST") or die $!; @files = grep m#(?:\.pm|\.pod|_pm\.PL)#, map {s/\s.*//s; $_} - grep {m#^lib# || m#^ext#} grep !m#/(?:t|demo)/#, ; + grep { m#^(lib|ext|dist|cpan)/# && !m#/(?:t|demo)/# } ; my %exceptions = ( 'abbrev' => 'Text::Abbrev',