Subject: | Fix: avoid calling auto_install in Makefile.PL |
Hi,
the modules Makefile.PL contains auto_install() whereas it shouldn't.
We've repeatedly been hit by modules doing this and don't want to break
our automated setups again and again.
What the Module::Install manual says in that regard:
``The use of auto_install is strongly discouraged in any distribution to
be uploaded to the CPAN, as the use of it violates the normal CPAN
client to toolchain communication protocol.''
http://search.cpan.org/~adamk/Module-Install-0.80/lib/Module/Install.pod#Module::Install::AutoInstall
The attached patch fixes it.
Regards,
Simon
Subject: | Catalyst-Component-ACCEPT_CONTEXT.diff |
--- Makefile.PL.orig Tue Mar 24 23:08:17 2009
+++ Makefile.PL Tue Mar 24 23:08:27 2009
@@ -8,6 +8,5 @@
requires 'Catalyst';
requires 'Scalar::Util';
build_requires 'Devel::Cycle';
-auto_install;
WriteAll;