In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/955fcc32c6c4d0781352c1380c640af78e7371e5?hp=413ff9f68feafcc9f84f1fbb43e6d6aa91adce9d>

- Log -----------------------------------------------------------------
commit 955fcc32c6c4d0781352c1380c640af78e7371e5
Author: Rafael Garcia-Suarez <r...@consttype.org>
Date:   Tue Apr 13 18:03:18 2010 +0200

    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.
-----------------------------------------------------------------------

Summary of changes:
 pod/perlmodlib.PL |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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)/#, <MANIFEST>;
+    grep { m#^(lib|ext|dist|cpan)/# && !m#/(?:t|demo)/# } <MANIFEST>;
 
 my %exceptions = (
     'abbrev' => 'Text::Abbrev',

--
Perl5 Master Repository

Reply via email to