This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9242b3
)
Don't quote a whitespace-containing ABSPERL when the whitespace
author
Craig A. Berry
<craigberry@mac.com>
Sat, 12 Jan 2008 01:01:45 +0000
(
01:01
+0000)
committer
Craig A. Berry
<craigberry@mac.com>
Sat, 12 Jan 2008 01:01:45 +0000
(
01:01
+0000)
means it is a command with parameter(s).
p4raw-id: //depot/perl@32964
lib/ExtUtils/MM_Unix.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/ExtUtils/MM_Unix.pm
b/lib/ExtUtils/MM_Unix.pm
index
3f922d4
..
854cb0b
100644
(file)
--- a/
lib/ExtUtils/MM_Unix.pm
+++ b/
lib/ExtUtils/MM_Unix.pm
@@
-18,7
+18,7
@@
use vars qw($VERSION @ISA
use ExtUtils::MakeMaker qw($Verbose neatvalue);
-$VERSION = '6.42_0
2
';
+$VERSION = '6.42_0
3
';
$VERSION = eval $VERSION;
require ExtUtils::MM_Any;
@@
-1981,7
+1981,7
@@
sub init_PERL {
}
$self->{ABSPERL} = qq{"$self->{ABSPERL}"}
- if
$self->{ABSPERL} =~ /\s/
;
+ if
($self->{ABSPERL} =~ /\s/) && ! $has_mcr
;
# Are we building the core?
$self->{PERL_CORE} = $ENV{PERL_CORE} unless exists $self->{PERL_CORE};