Change 11923 by jhi@alpha on 2001/09/07 01:49:36
Subject: [PATCH MakeMaker.pm] noise from make in ext/SDBM
From: Robin Barker <[EMAIL PROTECTED]>
Date: Thu, 6 Sep 2001 19:36:49 +0100 (BST)
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/lib/ExtUtils/MakeMaker.pm#69 edit
Differences ...
==== //depot/perl/lib/ExtUtils/MakeMaker.pm#69 (text) ====
Index: perl/lib/ExtUtils/MakeMaker.pm
--- perl/lib/ExtUtils/MakeMaker.pm.~1~ Thu Sep 6 20:00:05 2001
+++ perl/lib/ExtUtils/MakeMaker.pm Thu Sep 6 20:00:05 2001
@@ -152,7 +152,7 @@
my($dir);
use Cwd qw(cwd abs_path);
my $pwd = cwd();
- local @INC = map eval {abs_path($_)} || $_, @INC;
+ local @INC = map eval {abs_path($_) if -e} || $_, @INC;
foreach $dir (@{$self->{DIR}}){
my($abs) = $self->catdir($pwd,$dir);
End of Patch.