summaryrefslogtreecommitdiff
path: root/pod/perlmodlib.PL
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgs@consttype.org>2010-04-13 18:03:18 +0200
committerRafael Garcia-Suarez <rgs@consttype.org>2010-04-13 18:03:18 +0200
commit955fcc32c6c4d0781352c1380c640af78e7371e5 (patch)
tree056fdac4c9b39bc6a9186dc0a098f90e24e26ad6 /pod/perlmodlib.PL
parent413ff9f68feafcc9f84f1fbb43e6d6aa91adce9d (diff)
downloadperl-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.PL2
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',