Subject: | Module::Install::Catalyst breaks |
After using catalyst.pl to create the application skeleton, I found building process failed:
C:\Temp\Trial\Test>perl Makefile.PL
include inc/Module/Install.pm
Can't locate object method "new" via package "Module::Install::Catalyst" at inc/
Module/Install.pm - E:/Perl/site/lib/Module/Install.pm line 270.
I found if I replace the following line in site/lib/Module/Install.pm
use base 'Module::Install::Base';
with the more ugly form
our @ISA = qw(Module::Install::Base);
Everything suddenly works fine! I have no idea why that is the case but I hope this report will help anyway.
This issue arised only in the newest version of Catalyst.