diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-11-17 19:02:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-11-17 19:02:21 +0000 |
commit | a55f9fbc122e135334917b92ce41b3960365c082 (patch) | |
tree | c2fcabf3344a415a3247f203099ae4887798358e /installperl | |
parent | ab9905e6609a9cb347463da24528dc909d8edc7b (diff) | |
download | perl-a55f9fbc122e135334917b92ce41b3960365c082.tar.gz |
Install instmodsh and xsubpp in bin/ along the other utilities.
p4raw-id: //depot/perl@21740
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/installperl b/installperl index a12ec620e1..bd10643b1e 100755 --- a/installperl +++ b/installperl @@ -801,8 +801,9 @@ sub installlib { # .exists files, .PL files, and test files. return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.plc$|\.t$|^test\.pl$} || $dir =~ m{/t(?:/|$)}; - # ignore the cpan script in lib/CPAN/bin (installed later with other utils) - return if $name eq 'cpan'; + # ignore the cpan script in lib/CPAN/bin and the instmodsh and xsubpp + # scripts in lib/ExtUtils (they're installed later with other utils) + return if $name =~ /^(?:cpan|instmodsh|xsubpp)\z/; # ignore the Makefiles return if $name =~ /^makefile$/i; # ignore the test extensions |