diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-04-13 18:03:18 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-04-13 18:03:18 +0200 |
commit | 955fcc32c6c4d0781352c1380c640af78e7371e5 (patch) | |
tree | 056fdac4c9b39bc6a9186dc0a098f90e24e26ad6 /pod/perlmodlib.PL | |
parent | 413ff9f68feafcc9f84f1fbb43e6d6aa91adce9d (diff) | |
download | perl-955fcc32c6c4d0781352c1380c640af78e7371e5.tar.gz |
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.
Diffstat (limited to 'pod/perlmodlib.PL')
-rw-r--r-- | pod/perlmodlib.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlmodlib.PL b/pod/perlmodlib.PL index 78bd59c9be..dc2faf2ffb 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)/#, <MANIFEST>; + grep { m#^(lib|ext|dist|cpan)/# && !m#/(?:t|demo)/# } <MANIFEST>; my %exceptions = ( 'abbrev' => 'Text::Abbrev', |