diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-14 03:04:44 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-14 03:04:44 +0000 |
commit | dbd1e1b2eedaaa0c9eac55d2f49dc2089b9c8f08 (patch) | |
tree | 4c6f8c6d83b2de38d239caeadd0042c9f5a117c2 /lib | |
parent | 47aa779ee4c1a50e927b23367536ef9b5d706729 (diff) | |
download | perl-dbd1e1b2eedaaa0c9eac55d2f49dc2089b9c8f08.tar.gz |
canonicalize path for $(FULLPERL) and $(PERL) in MakeMaker
p4raw-id: //depot/perl@3417
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 40a8256475..f3af6e7b57 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -1853,7 +1853,7 @@ usually solves this kind of problem. push @defpath, $component if defined $component; } $self->{PERL} ||= - $self->find_perl(5.0, [ $^X, 'miniperl','perl','perl5',"perl$]" ], + $self->find_perl(5.0, [ $self->canonpath($^X), 'miniperl','perl','perl5',"perl$]" ], \@defpath, $Verbose ); # don't check if perl is executable, maybe they have decided to # supply switches with perl |