Skip Menu |

This queue is for tickets about the Module-Install CPAN distribution.

Report information
The Basics
Id: 67506
Status: new
Priority: 0/
Queue: Module-Install

People
Owner: Nobody in particular
Requestors: d.thomas [...] its.uq.edu.au
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.00
Fixed in: (no value)



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" ]