diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-25 04:47:32 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-25 04:47:32 +0000 |
commit | 2443aee56387aa761591b9d98a030605b7afc0db (patch) | |
tree | dc5eceb05f25f4f8831a8edf79797f5789c7bdfc | |
parent | 9204dbe03b8f6d4c97f3fb58d90b6df59cc355a1 (diff) | |
download | perl-2443aee56387aa761591b9d98a030605b7afc0db.tar.gz |
s/MAKEMAKEROPT/PERL_MM_OPT/
p4raw-id: //depot/perl@1886
-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 |