Subject: | INSTALLDIRS should be site when >= perl 5.11 |
Hi,
According to
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2010-04/msg01353.html
https://rt.perl.org//Public/Bug/Display.html?id=116479
Makefile.pm should be changed as below:
- INSTALLDIRS => 'perl', # as it is coming with perl
+ INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'),