From: Peter Rabbitson Date: Thu, 12 Mar 2009 23:30:26 +0000 (+0000) Subject: Move author warning in front of auto_install X-Git-Tag: v0.08100~41 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d7fda5520b0335c1284f0e1ab2b2e60598333f37;p=dbsrgits%2FDBIx-Class.git Move author warning in front of auto_install --- diff --git a/Makefile.PL b/Makefile.PL index e761d5b..8acdc1e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -82,6 +82,18 @@ if ($Module::Install::AUTHOR) { auto_provides; +if ($Module::Install::AUTHOR) { + warn <<'EOW'; +****************************************************************************** +****************************************************************************** +*** *** +*** AUTHOR MODE: all optional test dependencies converted to hard requires *** +*** *** +****************************************************************************** +****************************************************************************** + +EOW +} auto_install; # Have all prerequisites, check DBD::SQLite sanity @@ -211,6 +223,3 @@ if ($Module::Install::AUTHOR) { Meta->write; } -if ($Module::Install::AUTHOR) { - warn "\nAUTHOR MODE: all optional test dependencies were made hard requires\n"; -}