diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-09 00:18:32 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-09 00:18:32 +0000 |
commit | 6d6be53e5cf68dd14a1fce5f754d4f875bdaba05 (patch) | |
tree | 5201894988691f8dd351968159b1589e8e43073b /lib/ExtUtils/MM_VMS.pm | |
parent | 44ddc0720838c134bcecfee722279a483a169b18 (diff) | |
download | perl-6d6be53e5cf68dd14a1fce5f754d4f875bdaba05.tar.gz |
Upgrade to ExtUtils::MakeMaker 6.42
p4raw-id: //depot/perl@32600
Diffstat (limited to 'lib/ExtUtils/MM_VMS.pm')
-rw-r--r-- | lib/ExtUtils/MM_VMS.pm | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_VMS.pm b/lib/ExtUtils/MM_VMS.pm index 65ace84ecf..3b47470264 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 = '6.40'; +$VERSION = '6.42'; require ExtUtils::MM_Any; require ExtUtils::MM_Unix; @@ -1572,6 +1572,22 @@ map_clean : join '', @m; } +# --- Output postprocessing section --- + +=item maketext_filter (override) + +Insure that colons marking targets are preceded by space, in order +to distinguish the target delimiter from a colon appearing as +part of a filespec. + +=cut + +sub maketext_filter { + my($self, $text) = @_; + + $text =~ s/^([^\s:=]+)(:+\s)/$1 $2/mg; + return $text; +} =item prefixify (override) |