In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/0ab03fee6511fa635835917bfa399b00a79513e6?hp=b332a43bd08680672b0f70c2cadd3a964443dafd>
- Log ----------------------------------------------------------------- commit 0ab03fee6511fa635835917bfa399b00a79513e6 Author: Craig A. Berry <[email protected]> Date: Sun Oct 17 15:23:08 2010 -0500 Parentheses in compiler flags are legal on VMS. And sometimes required. Removing them was causing Embed.t to fail when compiler options with lists were in use, such as /NAMES=(AS_IS,SHORTENED). ----------------------------------------------------------------------- Summary of changes: lib/ExtUtils/Embed.pm | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm index 24ae909..edb82b0 100644 --- a/lib/ExtUtils/Embed.pm +++ b/lib/ExtUtils/Embed.pm @@ -19,7 +19,7 @@ use vars qw(@ISA @EXPORT $VERSION use strict; # This is not a dual-life module, so no need for development version numbers -$VERSION = '1.28'; +$VERSION = '1.29'; @ISA = qw(Exporter); @EXPORT = qw(&xsinit &ldopts @@ -144,6 +144,7 @@ sub static_ext { sub _escape { my $arg = shift; + return $$arg if $^O eq 'VMS'; # parens legal in qualifier lists $$arg =~ s/([\(\)])/\\$1/g; } -- Perl5 Master Repository
