Subject: | Could not create object... |
What has changed? What does this diagnostic try to tell me?
Could not create object with Module::Release::ANDK: release_subclass
is the same class! Don't do that! at /usr/local/bin/release line 321
! at /usr/local/bin/release line 321
This happens to me with 2.02 under perl 5.10.0. It worked until recently
but I have no overview which perls and which Module::Release versions
were involved. Let me know if you need further information.
My subclass ANDK.pm is very simple, I can reproduce it full length:
use strict;
use warnings;
package Module::Release::ANDK;
use Module::Release;
use base "Module::Release";
our $VERSION = "0.001";
no strict "refs";
for my $method (qw(
build_makefile
check_cvs
clean
cvs_tag
dist
make_cvs_tag
test
)) {
*$method = sub { return; };
}
1;
Any help appreciated.
Thanks,