diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-06 12:27:31 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-06 12:27:31 +0000 |
commit | f566a835390510a17d48e463c9c63df19f5ba200 (patch) | |
tree | 52a5bfa5bbf24f8274d5c9b8527c8f0a8fae9256 | |
parent | 75dc7936023df054864ceac1ce022a2016523de5 (diff) | |
download | perl-f566a835390510a17d48e463c9c63df19f5ba200.tar.gz |
Retract #11125 since NI-S pointed out it'll not work in
cases where the extension has their own handcrafted INC
et alia.
p4raw-id: //depot/perl@11174
-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 02548182b7..da6a03233c 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 INC DEFINE)){ + foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE)){ push @pasthru, "$key=\"\$($key)\""; } |