diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-04-02 19:04:27 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-04-02 19:04:27 +0000 |
commit | b809f04e6ef1fa3cd9abc5b53c75100bb603e794 (patch) | |
tree | 37d4d6c1a1f959d7a56e23b500a4ae40d17b803c /installperl | |
parent | d6d6baebee64d58c2423d178fa6cd7e331b79929 (diff) | |
download | perl-b809f04e6ef1fa3cd9abc5b53c75100bb603e794.tar.gz |
Fix "[perl #34643] Config_heavy.pl not in archlib"
p4raw-id: //depot/perl@24136
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/installperl b/installperl index 1bdf250e59..04ae476cc7 100755 --- a/installperl +++ b/installperl @@ -818,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; |