From: Abigail Date: Mon, 28 Aug 2000 20:35:08 +0000 (-0400) Subject: lib/lib.pm is arch dependent, and lib/lib_pm.PL shouldn't X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a8efb69486302324e7899b846fa7aef7a12d5a50;p=p5sagit%2Fp5-mst-13.2.git 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 --- diff --git a/installperl b/installperl index f3788cf..e2e9f0f 100755 --- a/installperl +++ b/installperl @@ -80,6 +80,7 @@ my @pods = (); # 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 '';