projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c6cab44
)
Fix to installing non-xs ext's in priv lib
Jerry D. Hedden [Mon, 23 Feb 2009 17:37:16 +0000 (12:37 -0500)]
installperl
patch
|
blob
|
blame
|
history
diff --git
a/installperl
b/installperl
index
8d5573d
..
a3657ef
100755
(executable)
--- a/
installperl
+++ b/
installperl
@@
-158,7
+158,8
@@
my @nonxs = grep(!/^Errno$/, split(' ', $Config{'nonxs_ext'}));
find(sub {
if (($File::Find::name =~ m{^ext\b(.*)/([^/]+)\.pm$}) &&
- ! grep { $File::Find::name =~ /^ext\/$_/ } @nonxs)
+ ! grep { (my $dir = $_) =~ s/\//-/g;
+ $File::Find::name =~ /^ext\/$dir/ } @nonxs)
{
my($path, $modname) = ($1,$2);