Subject: | FakeAdmin does not define |
Hi, this is a Debian etch with a source build perl v5.8.8. When trying
to install Module::Install, it won't create the Makefile.
perl Makefile.PL
Module::Install::Base::FakeAdmin does not define
$Module::Install::Base::FakeAdmin::VERSION--version check failed at
/usr/local/web21/perl/lib/site_perl/5.8.8/version/vpp.pm line 402.
I fixed it adding to the source of inc/Module/Install/Base.pm, line 61:
package Module::Install::Base::FakeAdmin;
use vars qw{$VERSION};
BEGIN {
$VERSION = '0.95';
}