projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
26102cc
)
Workaround on Cwd bootstrap problem.
Jarkko Hietaniemi [Tue, 24 Jul 2001 02:58:20 +0000 (
02:58
+0000)]
p4raw-id: //depot/perl@11464
lib/ExtUtils/MakeMaker.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/ExtUtils/MakeMaker.pm
b/lib/ExtUtils/MakeMaker.pm
index
b36a542
..
7f6bf1a
100644
(file)
--- a/
lib/ExtUtils/MakeMaker.pm
+++ b/
lib/ExtUtils/MakeMaker.pm
@@
-152,7
+152,7
@@
sub eval_in_subdirs {
my($dir);
use Cwd qw(cwd abs_path);
my $pwd = cwd();
- local @INC = map abs_path($_), @INC;
+ local @INC = map eval {abs_path($_)} || $_, @INC;
foreach $dir (@{$self->{DIR}}){
my($abs) = $self->catdir($pwd,$dir);