Subject: | if you got old Class-MethodMaker installed, can't install make |
'.' is usually the LAST item in @INC
Since I installed Class::MethodMaker before, make.pm
is found OUTSIDE of the current directory,
and thus running `perl Makefile.PL' does not create a Makefile
You need to modify Makefile.PL with
use lib '.'; # or equivalent magic aka BEGIN{unshift @INC , '.';}
before you
use make;
Also, you don't have any installation instructions