X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=installperl;h=04ae476cc76cb3f80c8234e01d414047d5deb472;hb=3480a8d2d46562b783befbcecf951d5a2b4067d7;hp=aaa17ea31ff09673d47560d78d44d9c5eb7a28fb;hpb=25207203046d8f94b03829079bb348bf2c1b204b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/installperl b/installperl index aaa17ea..04ae476 100755 --- a/installperl +++ b/installperl @@ -805,8 +805,9 @@ sub installlib { $dir =~ m{/t(?:/|$)}; # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp # scripts in lib/ExtUtils, and the prove script in lib/Test/Harness + # as well as the corelist script from lib/Module/CoreList/bin # (they're installed later with other utils) - return if $name =~ /^(?:cpan|instmodsh|prove)\z/; + return if $name =~ /^(?:cpan|instmodsh|prove|corelist)\z/; # ignore the Makefiles return if $name =~ /^makefile$/i; # ignore the test extensions @@ -817,7 +818,8 @@ sub installlib { my $installlib = $installprivlib; if ($dir =~ /^auto/ || ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) || - ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) + ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) || + $name eq 'Config_heavy.pl' ) { $installlib = $installarchlib; return unless $do_installarchlib;