summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Barker <RMBarker@cpan.org>2001-09-06 20:36:49 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-07 01:49:36 +0000
commit3593a55e256c536860df1e2afc19024e5c276ba2 (patch)
tree27b34968e7999d5520b91ee5784e1b80f07143a1
parentcbb96eed3f1754995a84502319be181614f5b621 (diff)
downloadperl-3593a55e256c536860df1e2afc19024e5c276ba2.tar.gz
noise from make in ext/SDBM
Message-Id: <200109061836.TAA08747@tempest.npl.co.uk> p4raw-id: //depot/perl@11923
-rw-r--r--lib/ExtUtils/MakeMaker.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
index d17a41ea57..64d2335931 100644
--- 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 eval {abs_path($_)} || $_, @INC;
+ local @INC = map eval {abs_path($_) if -e} || $_, @INC;
foreach $dir (@{$self->{DIR}}){
my($abs) = $self->catdir($pwd,$dir);