I am using CentOS 5.7 perl 5.14.2. While installing CPAN module Task::Catalyst
cpan -i Task::Catalyst
i am getting the error:
3 modules Catalyst::Authentication::Credential::HTTP
, Catalyst::View::Email
and Catalyst::Plugin::Session::Store::DBIC
are giving installation errors
When i tried to manually install the modules , say Catalyst::View::Email i downloaded the tar file, and then after running the ./Makefile.pl
i got the error
Please suggest?
Makefile.PL is just a perl script, that is generally invoked as
perl Makefile.PL
, and its output is a regular 'make' stylemakefile
.Have a look at its contents - perhaps it's been corrupted somehow. In the case of C::V::Email, it should be 39 lines long, and look exactly like this.