projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
84e4e00
)
Work around EUMM 7.06 creating an empty blib/ dir, breaking prove -lr
Peter Rabbitson [Mon, 7 Sep 2015 10:53:00 +0000 (12:53 +0200)]
xt/extra/internals/namespaces_cleaned.t
patch
|
blob
|
blame
|
history
diff --git
a/xt/extra/internals/namespaces_cleaned.t
b/xt/extra/internals/namespaces_cleaned.t
index
0023602
..
237a90b
100644
(file)
--- a/
xt/extra/internals/namespaces_cleaned.t
+++ b/
xt/extra/internals/namespaces_cleaned.t
@@
-193,7
+193,7
@@
sub find_modules {
push @modules, join ('::', File::Spec->splitdir($_));
},
no_chdir => 1,
- }, (-e 'blib' ? 'blib' : 'lib') );
+ }, qw( lib blib ) ); # find them in both lib and blib, @INC is preadjusted for us by the harness
return sort @modules;
}