Subject: | Fails with 5.17+ due dated inc/Module/Install version |
When you visit the matrix
(http://matrix.cpantesters.org/?dist=Tie-IxHash-FromText-0.02) wou will
notice that there are no new reports since 5.17. This is due to commit
http://perl5.git.perl.org/perl.git/commit/0da72d5e623b55d88fb3772b9c91e8f2d1ea7c40
which implemented an old deprecation.
So your inc/Module/Install/AutoInstall.pm stops working. Fortunately the
workaround is quick and obvious:
perl -i~ -nle 'print unless /auto_install/' Makefile.PL
echo "package Module::Install::AutoInstall; sub new {}; 1;" >
inc/Module/Install/AutoInstall.pm
The whole auto_install() magic is not needed for anything and can be
removed without regret.
HTH&&Thanks&&Regards,