Subject: | Makefile.PL should be traditional |
Since you don't do anything fancy with Module::Build,
you should add to Build.PL
create_makefile_pl => 'traditional'
So that you get a traditional Makefile.PL like below
# Note: this file was auto-generated by Module::Build::Compat version 0.03
use ExtUtils::MakeMaker;
WriteMakefile
(
'DISTNAME' => 'Plucene',
'VERSION_FROM' => 'lib/Plucene.pm',
'PREREQ_PM' => {
'Memoize' => '1.01',
'Tie::Array::Sorted' => '1.1',
'File::Spec::Functions' => '1.2',
'Encode::compat' => '0.04',
'File::Slurp' => '2002.1031',
'Class::HasA' => '1.00',
'Test::Class' => '0.03',
'Class::Virtual' => '0.03',
'Class::Accessor' => '0.18',
'Carp' => '1.01',
'Time::Piece' => '1.08',
'Test::Harness' => '2.30',
'IO::File' => '1.09',
'List::Util' => '1.13',
'IO::Handle' => '1.21_00',
'Lingua::Stem::En' => '2.12',
'Bit::Vector::Minimal' => '1.0',
'IO::Scalar' => '2.104',
'Class::Accessor::Fast' => '0.02'
},
'INSTALLDIRS' => 'site',
'PL_FILES' => {}
)
;