diff options
author | Alan Burlison <Alan.Burlison@uk.sun.com> | 2001-07-03 16:20:13 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-03 16:12:20 +0000 |
commit | eb3f763d073a6298d75bea9583ff2c56bd87d106 (patch) | |
tree | 56c270cf3aefe6fb5775014370242b6663013c7c | |
parent | 11afe54945d537705fbfd69eb1b26c1a12c777e3 (diff) | |
download | perl-eb3f763d073a6298d75bea9583ff2c56bd87d106.tar.gz |
(Retracted by #11174)
Subject: MakeMaker should pass through DEFINE and INC to subdirs
Message-ID: <3B41D49D.A923D4F9@sun.com>
p4raw-id: //depot/perl@11125
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index d9946e4ef6..cd5d4f65e6 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -2844,7 +2844,7 @@ sub pasthru { my($sep) = $Is_VMS ? ',' : ''; $sep .= "\\\n\t"; - foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE)){ + foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE INC DEFINE)){ push @pasthru, "$key=\"\$($key)\""; } |