in reply to extutils::makemaker
Did this really happen? If so, your Perl installation has been severely crippled, and I think it would be unadvisable to keep using such a badly administered Perl. You spell the module extutils::makemaker, but the real name of it is ExtUtils::MakeMaker - did you verify that the module is not installed with this code?
perl -MExtUtils::MakeMaker -e1
If it still tells you that it can't find ExtUtils::MakeMaker, you can try to install ExtUtils::MakeMaker manually by copying the relevant files into a private directory. Please mind that ExtUtils::MakeMaker consists of several files, so MakeMaker.pm alone won't suffice.
(Untested) Steps for manually installing ExtUtils::MakeMaker locally.
(no error there means everything works)perl -I~/perl-lib -MExtUtils::MakeMaker -e1
perl -MExtUtils::MakeMaker
use lib '~/perl-lib';
These steps try to guide you through installing the latest version of ExtUtils::MakeMaker. A safer/saner approach might be to try to install the exact version that came with your version of Perl. For that, you need the following additional steps:
Let's pretend you have version 5.8.2perl -v
|
|---|