Change 19651 by [EMAIL PROTECTED] on 2003/05/31 18:48:59
Don't install test.pl files.
Affected files ...
... //depot/perl/installperl#106 edit
Differences ...
==== //depot/perl/installperl#106 (xtext) ====
Index: perl/installperl
--- perl/installperl#105~19065~ Wed Mar 26 11:55:20 2003
+++ perl/installperl Sat May 31 11:48:59 2003
@@ -754,8 +754,8 @@
}
# 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';
End of Patch.