diff options
author | Chip Salzenberg <chip@perl.com> | 1997-04-03 09:49:53 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-15 00:00:00 +1200 |
commit | 5cc330c87f9e28573cadb3255b068abf37e4fdd2 (patch) | |
tree | 0402b01216179b05d74d64a76de7fe7aae6b0782 /installperl | |
parent | 43c928080ab3849e95bac569d60d022dc2b624ad (diff) | |
download | perl-5cc330c87f9e28573cadb3255b068abf37e4fdd2.tar.gz |
Put extensions' autoload files in $archlib
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index a654b268fe..07b1e55627 100755 --- a/installperl +++ b/installperl @@ -415,7 +415,7 @@ sub installlib { } if (-f $_) { - if (/\.al$/ || /\.ix$/) { + if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) { $installlib = $installprivlib; #We're installing *.al and *.ix files into $installprivlib, #but we have to delete old *.al and *.ix files from the 5.000 |