Skip Menu |

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

Report information
The Basics
Id: 54454
Status: resolved
Priority: 0/
Queue: Module-Pluggable

People
Owner: Nobody in particular
Requestors: toddr [...] null.net
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 3.9
Fixed in: (no value)



Subject: Makefile.PL installs to wrong place for perl 5.11+
as of 5.11/5.12, Module-Pluggable is no longer installing into the arch directories for core. The following line needs to be changed in Makefile.PL -'INST_LIB' => ($] >= 5.008009) ? 'blib/arch' : 'blib/lib', +'INST_LIB' => ($] >= 5.008009 && $] < 5.011) ? 'blib/arch' : 'blib/lib',
On Tue Feb 09 17:14:24 2010, toddr@null.net wrote: Show quoted text
> as of 5.11/5.12, Module-Pluggable is no longer installing into the > arch > directories for core. > > The following line needs to be changed in Makefile.PL > > -'INST_LIB' => ($] >= 5.008009) ? 'blib/arch' : 'blib/lib', > +'INST_LIB' => ($] >= 5.008009 && $] < 5.011) ? 'blib/arch' : > 'blib/lib',
I've switched the Build system to Module::Build which should hopefully do the right thing now. Would you mind testing? https://github.com/simonwistow/Module-Pluggable/
Released as 4.1 - fingers crossed it does the right thing.
Released as 4.1 - fingers crossed it does the right thing.