X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/99d21f8bc43125eacfa8aced0256e0e27fb2201d..08baf5037791978029fee31617445f9736f340d1:/installperl diff --git a/installperl b/installperl index f7e69b8..aede39a 100755 --- a/installperl +++ b/installperl @@ -153,8 +153,13 @@ if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) { push(@scripts, map("$_.exe", @scripts)); } +# Exclude nonxs extensions that are not architecture dependent +my @nonxs = grep(!/^Errno$/, split(' ', $Config{'nonxs_ext'})); + find(sub { - if ("$File::Find::dir/$_" =~ m{^ext\b(.*)/([^/]+)\.pm$}) { + if (($File::Find::name =~ m{^ext\b(.*)/([^/]+)\.pm$}) && + ! grep { $File::Find::name =~ /^ext\/$_/ } @nonxs) + { my($path, $modname) = ($1,$2); # strip to optional "/lib", or remove trailing component