Skip to content

Commit

Permalink
EU::MM::MM_VMS::one_liner must quote "--" argument
Browse files Browse the repository at this point in the history
p4raw-id: //depot/perl@27613
  • Loading branch information
craigberry committed Mar 27, 2006
1 parent 7c58897 commit 002ab80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ExtUtils/MM_VMS.pm
Expand Up @@ -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_02';
$VERSION = '5.73_03';

require ExtUtils::MM_Any;
require ExtUtils::MM_Unix;
Expand Down Expand Up @@ -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 \"--\"};
}


Expand Down

0 comments on commit 002ab80

Please sign in to comment.