summaryrefslogtreecommitdiff
path: root/installperl
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2000-08-28 16:35:08 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-23 15:08:28 +0000
commita8efb69486302324e7899b846fa7aef7a12d5a50 (patch)
treed4de91066c226ef43a4daa13706fda89079faccb /installperl
parent51de783f78ab65022620cf2500414a9a6181851e (diff)
downloadperl-a8efb69486302324e7899b846fa7aef7a12d5a50.tar.gz
lib/lib.pm is arch dependent, and lib/lib_pm.PL shouldn't
get installed: Subject: lib/lib.pm Message-ID: <20000829003508.21281.qmail@foad.org> p4raw-id: //depot/perl@8528
Diffstat (limited to 'installperl')
-rwxr-xr-xinstallperl5
1 files changed, 3 insertions, 2 deletions
diff --git a/installperl b/installperl
index f3788cf943..e2e9f0f435 100755
--- a/installperl
+++ b/installperl
@@ -80,6 +80,7 @@ my @pods = (<pod/*.pod>);
# files under the archlib directory.
my %archpms = (
Config => 1,
+ lib => 1,
);
if ($^O eq 'dos') {
@@ -603,8 +604,8 @@ sub installlib {
}
# ignore patch backups, RCS files, emacs backup & temp files and the
- # .exists files.
- return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists};
+ # .exists files, and .PL files.
+ return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists|\.PL$};
$name = "$dir/$name" if $dir ne '';