X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=a5ee467c2a31d2149b0b343050ce1b25b99d537a;hb=3ab52ff81212ec0704c75d7fc6027b73d48bc59f;hp=50a8cbcd7615466c110f6a4e9b51c4476873a3c5;hpb=edffeb5aca522b3ff18fa1707bd848283dbec12b;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index 50a8cbc..a5ee467 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -126,6 +126,7 @@ check_conflicts(); # Nicked straight from Moose! sub check_conflicts { my %conflicts = ( + 'CatalystX::CRUD' => '0.37', 'Catalyst::Action::RenderView' => '0.08', 'Catalyst::Plugin::DebugCookie' => '0.999002', 'Catalyst::Plugin::Authentication' => '0.100092', @@ -135,7 +136,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();