diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-12-19 15:07:00 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-12-19 15:07:00 +0100 |
commit | 1ce0c05c119a85d420011224986674267b9448b9 (patch) | |
tree | 03bc7f328d5140e14ff9190f3581b29b37cfc9d2 | |
parent | 03e0ab963907acee32dbfca5314efb52ea006753 (diff) | |
download | perl-1ce0c05c119a85d420011224986674267b9448b9.tar.gz |
Add autodoc.pl to the 'no_index' section of META.yml
This stops search.cpan.org mistaking its stub contents for the (full,
generated) perlapi manpage.
-rw-r--r-- | META.yml | 1 | ||||
-rw-r--r-- | Porting/makemeta | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -59,6 +59,7 @@ no_index: - lib/version - win32 file: + - autodoc.pl - dist/IO/ChangeLog - dist/IO/hints/sco.pl - dist/IO/IO.pm diff --git a/Porting/makemeta b/Porting/makemeta index af39ecc117..90ce9bf075 100644 --- a/Porting/makemeta +++ b/Porting/makemeta @@ -22,7 +22,7 @@ my $file = "META.yml"; use Maintainers qw(%Modules get_module_files get_module_pat); my @CPAN = grep { $Modules{$_}{CPAN} } keys %Modules; -my @files = ('lib/unicore/mktables', 'TestInit.pm', +my @files = ('autodoc.pl', 'lib/unicore/mktables', 'TestInit.pm', 'Porting/Maintainers.pm', 'Porting/perldelta_template.pod', map { get_module_files($_) } @CPAN); my @dirs = ('cpan', 'win32', grep { -d $_ && $_ !~ /^cpan/ } map { get_module_pat($_) } @CPAN); |