diff options
author | Robin Barker <RMBarker@cpan.org> | 2001-09-06 20:36:49 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-07 01:49:36 +0000 |
commit | 3593a55e256c536860df1e2afc19024e5c276ba2 (patch) | |
tree | 27b34968e7999d5520b91ee5784e1b80f07143a1 | |
parent | cbb96eed3f1754995a84502319be181614f5b621 (diff) | |
download | perl-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.pm | 2 |
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); |