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',