X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=450919026a4039a6f69be34d781db4efccc83173;hb=b5508455565fd7f0e9ef50ed356d020844176cce;hp=b69ec9f32f3d93dc27090aad3dc3dfe07c5578d3;hpb=6a5b809ee59551d3362f03af7762e11456420c8e;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index b69ec9f..4509190 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -46,7 +46,7 @@ my $runtime_requires = { 'DBI' => '1.609', 'MRO::Compat' => '0.09', 'Module::Find' => '0.06', - 'Path::Class' => '0.16', + 'Path::Class' => '0.18', 'Scope::Guard' => '0.03', 'SQL::Abstract' => '1.61', 'SQL::Abstract::Limit' => '0.13', @@ -67,7 +67,7 @@ if ($Module::Install::AUTHOR) { print "Regenerating README\n"; system('pod2text lib/DBIx/Class.pm > README'); - + system('perl -Ilib ./script/dbicadmin --pod > lib/dbicadmin.pod'); if (-f 'MANIFEST') { print "Removing MANIFEST\n"; unlink 'MANIFEST'; @@ -105,7 +105,7 @@ for my $rtype (keys %$reqs) { # sanity check req duplications if ($final_req{$mod}) { - die "$mod specified as both a $rtype and a $final_req{$mod}[1]\n"; + die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n"; } $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],