Change 11464 by jhi@alpha on 2001/07/24 02:58:20
Workaround on Cwd bootstrap problem.
Affected files ...
... //depot/perl/lib/ExtUtils/MakeMaker.pm#66 edit
Differences ...
==== //depot/perl/lib/ExtUtils/MakeMaker.pm#66 (text) ====
Index: perl/lib/ExtUtils/MakeMaker.pm
--- perl/lib/ExtUtils/MakeMaker.pm.~1~ Mon Jul 23 21:15:05 2001
+++ perl/lib/ExtUtils/MakeMaker.pm Mon Jul 23 21:15:05 2001
@@ -152,7 +152,7 @@
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);
End of Patch.