Note which new releases of stuff we're waiting for, fix warning from Makefile.PL
[catagits/Catalyst-Runtime.git] / Makefile.PL
index 15b0374..b014ca9 100644 (file)
@@ -126,6 +126,8 @@ check_conflicts();
 # Nicked straight from Moose!
 sub check_conflicts {
     my %conflicts = (
+        'Catalyst::Action::RenderView'     => '0.08',
+        'Catalyst::Plugin::DebugCookie'    => '0.999002',
         'Catalyst::Plugin::Authentication' => '0.100092',
         'CatalystX::Imports'               => '0.03',
         'Catalyst-Plugin-HashedCookies'    => '1.03',
@@ -133,7 +135,7 @@ sub check_conflicts {
 
     my $found = 0;
     for my $mod ( sort keys %conflicts ) {
-        eval "require $mod";
+        eval "require($mod)";
         next if $@;
 
         my $installed = $mod->VERSION();