diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-08-22 11:14:59 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-08-22 11:14:59 +0000 |
commit | 04f9cde50c508a203d51e8f3da772b3f931cbc2c (patch) | |
tree | 238d8808fa55e1df7891546c2279c57f3b79603d /installperl | |
parent | 8f2fde92ae305b8b21924753643f9f3a1ee88308 (diff) | |
download | perl-04f9cde50c508a203d51e8f3da772b3f931cbc2c.tar.gz |
Don't install ptar in module tree
p4raw-id: //depot/perl@25314
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/installperl b/installperl index 04d778e7a9..ddf739d4a3 100755 --- a/installperl +++ b/installperl @@ -804,10 +804,11 @@ sub installlib { return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.plc$|\.t$|^test\.pl$} || $dir =~ m{/t(?:/|$)}; # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp - # scripts in lib/ExtUtils, and the prove script in lib/Test/Harness - # as well as the corelist script from lib/Module/CoreList/bin + # scripts in lib/ExtUtils, the prove script in lib/Test/Harness, + # the corelist script from lib/Module/CoreList/bin and ptar in + # lib/Archive/Tar/bin # (they're installed later with other utils) - return if $name =~ /^(?:cpan|instmodsh|prove|corelist)\z/; + return if $name =~ /^(?:cpan|instmodsh|prove|corelist|ptar)\z/; # ignore the Makefiles return if $name =~ /^makefile$/i; # ignore the test extensions |