Subject: | INSTALLDIRS should be site when > perl 5.11 |
Hi,
According to "Bug #57201 for CPANPLUS: installdirs should be site when >
perl 5.11"
https://rt.cpan.org/Public/Bug/Display.html?id=57201
Show quoted text
> As of 5.12, site_lib comes before the perl core libraries in @INC.
> All dual life modules should install to site_lib if installed from CPAN.
> Link to p5p thread on this topic.
>
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2010-04/msg01353.html
So you should change Makefile.PL as below:
- INSTALLDIRS => ( $] >= 5.009005 ? 'perl' : 'site' ),
+ INSTALLDIRS => ( $] >= 5.009005 && $] <= 5.011000 ? 'perl' : 'site' ),