diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-09-12 14:49:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-09-12 14:49:21 +0000 |
commit | 58d3253823637a1fee2c1c8064022162bc9d6374 (patch) | |
tree | a8ec700703b0a18628d569f55e707d2766bca075 /lib/ExtUtils/MM_VMS.pm | |
parent | 9ef43ace7060ef03dec4786f384548681099f0ca (diff) | |
download | perl-58d3253823637a1fee2c1c8064022162bc9d6374.tar.gz |
Upgrade to MakeMaker 6.30_04
p4raw-id: //depot/perl@28825
Diffstat (limited to 'lib/ExtUtils/MM_VMS.pm')
-rw-r--r-- | lib/ExtUtils/MM_VMS.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_VMS.pm b/lib/ExtUtils/MM_VMS.pm index 7514c61be6..5968f74a48 100644 --- a/lib/ExtUtils/MM_VMS.pm +++ b/lib/ExtUtils/MM_VMS.pm @@ -18,7 +18,7 @@ use File::Basename; # $Revision can't be on the same line or SVN/K gets confused use vars qw($Revision $VERSION @ISA); -$VERSION = '5.73_03'; +$VERSION = '5.73_02'; require ExtUtils::MM_Any; require ExtUtils::MM_Unix; @@ -1732,7 +1732,7 @@ sub oneliner { # Switches must be quoted else they will be lowercased. $switches = join ' ', map { qq{"$_"} } @$switches; - return qq{\$(ABSPERLRUN) $switches -e $cmd \"--\"}; + return qq{\$(ABSPERLRUN) $switches -e $cmd "--"}; } |