From: Rafael Garcia-Suarez Date: Wed, 21 Mar 2007 08:57:22 +0000 (+0000) Subject: Don't install XS::APItest and XS::Typemap X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f631d084b05e327a0dd07924f36ef1ef6789a38f;p=p5sagit%2Fp5-mst-13.2.git Don't install XS::APItest and XS::Typemap p4raw-id: //depot/perl@30653 --- diff --git a/installperl b/installperl index a45c3fd..521e4f5 100755 --- a/installperl +++ b/installperl @@ -834,7 +834,8 @@ sub installlib { # ignore the Makefiles return if $name =~ /^makefile$/i; # ignore the test extensions - return if $dir =~ m{ext/XS/(?:APItest|Typemap)/}; + return if $dir =~ m{\bXS/(?:APItest|Typemap)\b}; + return if $name =~ m{\b(?:APItest|Typemap)\.pm$}; # ignore the demo files return if $dir =~ /\bdemos?\b/; diff --git a/utils/perlivp.PL b/utils/perlivp.PL index 01c5169..276ba76 100644 --- a/utils/perlivp.PL +++ b/utils/perlivp.PL @@ -211,6 +211,9 @@ if (defined($Config{'extensions'})) { # that's a distribution name, not a module name next if $_ eq 'IO/Compress/Zlib'; next if $_ eq 'Devel/DProf'; + # test modules + next if $_ eq 'XS/APItest'; + next if $_ eq 'XS/Typemap'; # VMS$ perl -e "eval ""require \""Devel/DProf.pm\"";"" print $@" # \NT> perl -e "eval \"require 'Devel/DProf.pm'\"; print $@" # DProf: run perl with -d to use DProf.