From: Rafael Garcia-Suarez Date: Sat, 31 May 2003 18:48:59 +0000 (+0000) Subject: Don't install test.pl files. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=056a8fbecb5430f5c3c47e7377e5467379e227be;p=p5sagit%2Fp5-mst-13.2.git Don't install test.pl files. p4raw-id: //depot/perl@19651 --- diff --git a/installperl b/installperl index 95f9793..17d1b39 100755 --- a/installperl +++ b/installperl @@ -754,8 +754,8 @@ sub installlib { } # ignore patch backups, RCS files, emacs backup & temp files and the - # .exists files, .PL files, and .t files. - return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$} || + # .exists files, .PL files, and test files. + return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$|^test\.pl$} || $dir =~ m{/t(?:/|$)}; # ignore the cpan script in lib/CPAN/bin (installed later with other utils) return if $name eq 'cpan';