X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=9b2418ac502e4a5b5a3315fc9749f01fe4f1d8c5;hb=0b4b7709401edc26db0a8d310832a4b39eefc843;hp=1e32c5052d65c67a6cb054c576e32ef17b27443d;hpb=34f636eeaf0e97ccdbee46816c5d7caed9e8863f;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index 1e32c50..9b2418a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -18,7 +18,6 @@ my $deps = { 'Package::Variant' => '1.001001', 'Sub::Quote' => '0', 'Try::Tiny' => '0.04', - 'List::MoreUtils' => '0.09', 'Scalar::Util' => '0', }, recommends => { @@ -60,7 +59,7 @@ readme_from 'lib/SQL/Translator.pm'; for my $type (qw/requires recommends test_requires/) { no strict qw/refs/; my $f = \&$type; - for my $mod (keys %{$deps->{$type} || {} }) { + for my $mod (sort keys %{$deps->{$type} || {} }) { $f->($mod, $deps->{$type}{$mod}); } }