Reintroduce a lot of missing modules into perlmodlib.pod
Rafael Garcia-Suarez [Tue, 13 Apr 2010 16:03:18 +0000 (18:03 +0200)]
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.

pod/perlmodlib.PL

index 78bd59c..dc2faf2 100644 (file)
@@ -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',