[Catalyst-commits] r13000 - Catalyst-Runtime/5.80/trunk
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Wed Mar 3 22:57:24 GMT 2010
Author: t0m
Date: 2010-03-03 22:57:24 +0000 (Wed, 03 Mar 2010)
New Revision: 13000
Modified:
Catalyst-Runtime/5.80/trunk/Makefile.PL
Log:
The no warnings stanza does nothing, so remove it
Modified: Catalyst-Runtime/5.80/trunk/Makefile.PL
===================================================================
--- Catalyst-Runtime/5.80/trunk/Makefile.PL 2010-03-03 22:09:23 UTC (rev 12999)
+++ Catalyst-Runtime/5.80/trunk/Makefile.PL 2010-03-03 22:57:24 UTC (rev 13000)
@@ -1,14 +1,12 @@
use strict;
use warnings;
use inc::Module::Install 0.91;
-{ # Ensure that these get used - yes, M::I loads them for us, but if you're
- # in author mode and don't have them installed, then the error is tres
- # cryptic.
- no warnings 'redefine';
- use Module::Install::AuthorRequires;
- use Module::Install::CheckConflicts;
- use Module::Install::AuthorTests;
-}
+# Ensure that these get used - yes, M::I loads them for us, but if you're
+# in author mode and don't have them installed, then the error is tres
+# cryptic.
+use Module::Install::AuthorRequires;
+use Module::Install::CheckConflicts;
+use Module::Install::AuthorTests;
perl_version '5.008004';
More information about the Catalyst-commits
mailing list