Subject: | Build.PL does not include Module::Build |
Here's what Build.pl says:
my $build_pkg = eval "require Apache::TestMB" ? 'Apache::TestMB' :
'Module::Build';
This will actually cause Module::Build not to be included in case
there's no Apache::TestMB, since the eval will never yield false value
(as the require is syntactically correct). The correct way to do this
would probably be:
eval "require Apache::TestMB";
my $build_pkg = $@ ? 'Module::Build' : 'Apache::TestMB';