diff options
author | Alan Burlison <Alan.Burlison@uk.sun.com> | 2001-07-03 16:20:13 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-08-05 13:31:07 +0000 |
commit | 3c4568b5fca2fd541d0ea0449547aa232f6da405 (patch) | |
tree | 055a2d211acc08e76b848605e8fdae3f370240b9 | |
parent | ff875642fb93529394d9c68e02de7dfb16e28ea6 (diff) | |
download | perl-3c4568b5fca2fd541d0ea0449547aa232f6da405.tar.gz |
(Reintroduce #11125)
Subject: MakeMaker should pass through DEFINE and INC to subdirs
Message-ID: <3B41D49D.A923D4F9@sun.com>
p4raw-id: //depot/perl@11579
-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 c951e52d74..c335b72a52 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -2871,7 +2871,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)\""; } |