diff options
-rw-r--r-- | lib/ExtUtils/MakeMaker.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm index f370640b74..4b3fed7369 100644 --- a/lib/ExtUtils/MakeMaker.pm +++ b/lib/ExtUtils/MakeMaker.pm @@ -452,7 +452,7 @@ sub ExtUtils::MakeMaker::new { } $self->{PARENT}->{CHILDREN}->{$newclass} = $self if $self->{PARENT}; } else { - parse_args($self,split(' ', $ENV{MAKEMAKEROPT} || ''),@ARGV); + parse_args($self,split(' ', $ENV{PERL_MM_OPT} || ''),@ARGV); } $self->{NAME} ||= $self->guess_name; @@ -1927,7 +1927,7 @@ different means on the current architecture). =over 8 -=item MAKEMAKEROPT +=item PERL_MM_OPT Command line options used by C<MakeMaker-E<gt>new()>, and thus by C<WriteMakefile()>. The string is split on whitespace, and the result |