In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/94ca877552a4c313bb412c469660433935f8dc00?hp=474d0ac875c37fee4bab4978192a9bf358bd4eeb>

- Log -----------------------------------------------------------------
commit 94ca877552a4c313bb412c469660433935f8dc00
Author: David Mitchell <da...@iabyn.com>
Date:   Wed Aug 25 14:16:26 2010 +0100

    exclude autodoc.pl from pod checks
    
    This script contains snippets of pod in here-doc sections which
    gives false positives
-----------------------------------------------------------------------

Summary of changes:
 t/porting/podcheck.t |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t
index 87f6f7f..3fbe27c 100644
--- a/t/porting/podcheck.t
+++ b/t/porting/podcheck.t
@@ -41,6 +41,7 @@ while (<$m>) {
     my ($file, $separator) = /^(\S+)(\s+)/;
        next if $file =~ /^cpan\//;
        next unless ($file =~ /\.(?:pm|pod|pl)$/);
+       next if $file eq 'autodoc.pl';
     push @files, $file;
 };
 @files = sort @files; # so we get consistent results

--
Perl5 Master Repository

Reply via email to