Subject: | Needs to install in 'perl' not 'site' for 5.8.9 |
Since 5.8.9 came out after 5.9.3, Makefile.PL needs to be changed from:
'INSTALLDIRS' => ($] >= 5.009003 ? 'perl' : 'site'),
to
'INSTALLDIRS' => ($] >= 5.008009 ? 'perl' : 'site'),
I doubt this will cause any issues even though it's technically
incorrect for 5.9.0-5.9.2.