X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FExtUtils%2FMM_Any.pm;h=b3d0d0f0883a80da355abaa592d27c467f4308bb;hb=6d6be53e5cf68dd14a1fce5f754d4f875bdaba05;hp=7c12b4fabc2f405e992943259cbbffdba9e800c5;hpb=44ddc0720838c134bcecfee722279a483a169b18;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/ExtUtils/MM_Any.pm b/lib/ExtUtils/MM_Any.pm index 7c12b4f..b3d0d0f 100644 --- a/lib/ExtUtils/MM_Any.pm +++ b/lib/ExtUtils/MM_Any.pm @@ -2,7 +2,7 @@ package ExtUtils::MM_Any; use strict; use vars qw($VERSION @ISA); -$VERSION = '6.40'; +$VERSION = '6.42'; use Carp; use File::Spec; @@ -236,6 +236,24 @@ sub wraplist { } +=head3 maketext_filter + + my $filter_make_text = $mm->maketext_filter($make_text); + +The text of the Makefile is run through this method before writing to +disk. It allows systems a chance to make portability fixes to the +Makefile. + +By default it does nothing. + +This method is protected and not intended to be called outside of +MakeMaker. + +=cut + +sub maketext_filter { return $_[1] } + + =head3 cd I my $subdir_cmd = $MM->cd($subdir, @cmds);