diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2014-06-16 07:53:35 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-16 07:55:13 -0400 |
commit | 1b54b9b1ec7b382c487d479af4a61c8fa44e96f0 (patch) | |
tree | 7f9129778e3de5416f00af34ea3471e03477a439 /Porting | |
parent | bca684bcd779e00cfa1fa1c778daa2f59d4dcadd (diff) | |
download | perl-1b54b9b1ec7b382c487d479af4a61c8fa44e96f0.tar.gz |
[perl #122110] [PATCH] Remove left-over mad cruft
The great MADectomy left some cruft behind:
- no_index in META.{yml,json}
- $Config{mad} checks in tests
- Porting/perlhist_calculate.pl
- symbian/config.pl
- PERL_XMLDUMP error in perldiag
- madly{h,obj,src} in win32/config.{gc,vc}
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/makemeta | 2 | ||||
-rwxr-xr-x | Porting/perlhist_calculate.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Porting/makemeta b/Porting/makemeta index 8d0b0697cf..69810488ac 100644 --- a/Porting/makemeta +++ b/Porting/makemeta @@ -70,7 +70,7 @@ my @CPAN = grep { $Modules{$_}{CPAN} } keys %Modules; 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', 'mad', grep { -d $_ && $_ !~ /^cpan/ } map { get_module_pat($_) } @CPAN); +my @dirs = ('cpan', 'win32', grep { -d $_ && $_ !~ /^cpan/ } map { get_module_pat($_) } @CPAN); my %dirs; @dirs{@dirs} = (); diff --git a/Porting/perlhist_calculate.pl b/Porting/perlhist_calculate.pl index 0d73991993..661f98d17e 100755 --- a/Porting/perlhist_calculate.pl +++ b/Porting/perlhist_calculate.pl @@ -143,7 +143,7 @@ sub calc_longtable { emit Configure => $configure_size, 1; - foreach my $dir (qw(Cross djgpp emacs h2pl hints mad NetWare os2 plan9 Porting qnx symbian utils vms vos win32 x2p)) { + foreach my $dir (qw(Cross djgpp emacs h2pl hints NetWare os2 plan9 Porting qnx symbian utils vms vos win32 x2p)) { calc_dir($dir); } } |