Subject: | Makefile.PL PREREQ_PM broken |
The Makefil.PL contains
PREREQ_PM=>{"WWW::Mechanize","WWW::Mechanize::FormFiller","HTML::TableContentParser"},
This is read as "I need the version number 'WWW::Mechanize::FormFiller' of the WWW::Mechanize module"
More likely you wanted to say
PREREQ_PM=>{"WWW::Mechanize"=>0,
"WWW::Mechanize::FormFiller"=>0,
"HTML::TableContentParser"=>0},
Thanks & Regards,