Subject: | Module::Install::Compiler::cc_lib_links ? |
noticed when building Crypt-OpenSSL-X509-1.8.tar.gz
under perl-5.10.1 on RHEL6. That module comes bundled
with Module::Install 1.00.
The following text appears when running "perl Makefile.PL"
Unrecognized argument in LIBS ignored: 'ARRAY(0x216b320)'
The 'ARRAY...' comes from the call to makemaker_args from
inc/Module/Install/Compiler::cc_lib_links
%args just before the call to ExtUtils::MakeMaker::WriteMakefile in
inc/Module/Install/Makefile::write contains
LIBS=>
[
"-L/usr/lib -L/usr/local/lib -L/usr/local/ssl/lib"
"ARRAY(0x2d65d50) -lcrypto"
]
After removing "$self->makemaker_args->{LIBS}, " from
cc_lib_links()
LIBS=>
[
"-L/usr/lib -L/usr/local/lib -L/usr/local/ssl/lib"
"-lcrypto"
]