X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=826c3bccc5ef2d5788386e64d6818a205c48dc30;hb=7ff18dbd7fdaff372c7ec8476a62ccc9e5d5bb68;hp=d8225bc17e04402ba6c60a4e6da4fcefb2b8ca30;hpb=971bc4b63114ba9994a8deeeb5bdc297112fa50b;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index d8225bc..826c3bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -71,6 +71,7 @@ my %force_requires_if_author = ( # t/52cycle.t 'Test::Memory::Cycle' => 0, + 'Devel::Cycle' => 1.10, # t/60core.t 'DateTime::Format::MySQL' => 0, @@ -111,12 +112,16 @@ EOW build_requires ($module => $force_requires_if_author{$module}); } + print "Regenerating README\n"; system('pod2text lib/DBIx/Class.pm > README'); -} -auto_provides; + if (-f 'MANIFEST') { + print "Removing MANIFEST\n"; + unlink 'MANIFEST'; + } +} -auto_install; +auto_install(); WriteAll();