In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/564ac620902c38056c0c8bc7099cadf6b5961faa?hp=4cc560b23649f322bae0315aed9b9665e537c44e>

- Log -----------------------------------------------------------------
commit 564ac620902c38056c0c8bc7099cadf6b5961faa
Author: Abigail <[email protected]>
Date:   Tue Mar 20 00:14:24 2012 +0100

    Eliminate a warning
-----------------------------------------------------------------------

Summary of changes:
 Porting/corelist.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Porting/corelist.pl b/Porting/corelist.pl
index 83211f3..f8110f3 100755
--- a/Porting/corelist.pl
+++ b/Porting/corelist.pl
@@ -152,7 +152,7 @@ my %module_to_deprecated;
 while ( my ( $module, $file ) = each %module_to_file ) {
     my $M = $file_to_M->{$file};
     next unless $M;
-    next if $Modules{$M}{MAINTAINER} eq 'p5p';
+    next if $Modules{$M}{MAINTAINER} && $Modules{$M}{MAINTAINER} eq 'p5p';
     $module_to_upstream{$module} = $Modules{$M}{UPSTREAM};
     $module_to_deprecated{$module} = 1 if $Modules{$M}{DEPRECATED};
     next

--
Perl5 Master Repository

Reply via email to