diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-03-18 13:57:39 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-03-18 13:57:39 +0000 |
commit | 25c32de1d6c1a948fb0fff96b2dc1f17a177723a (patch) | |
tree | bbd0bedac76c6558851920ffb9cd5f17fef50280 /Porting/makemeta | |
parent | 51e623de6248e035f4d9a015759d34f622d15168 (diff) | |
download | perl-25c32de1d6c1a948fb0fff96b2dc1f17a177723a.tar.gz |
Add more internal files and directories to no_index in META.yml
This prevents search.cpan.org finding and formatting template and internal
documentation. Fixes RT #73632.
Diffstat (limited to 'Porting/makemeta')
-rw-r--r-- | Porting/makemeta | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Porting/makemeta b/Porting/makemeta index 72c66d2ef5..532ee854b7 100644 --- a/Porting/makemeta +++ b/Porting/makemeta @@ -16,8 +16,10 @@ die "$0: will not override $file, delete it first.\n" if -e $file; use Maintainers qw(%Modules get_module_files get_module_pat); my @CPAN = grep { $Modules{$_}{CPAN} } keys %Modules; -my @files = map { get_module_files($_) } @CPAN; -my @dirs = ('cpan', grep { -d $_ && $_ !~ /^cpan/ } map { get_module_pat($_) } @CPAN); +my @files = ('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); my %dirs; @dirs{@dirs} = (); |