From: Matt S Trout Date: Thu, 2 Jul 2009 20:17:34 +0000 (+0100) Subject: fixup Makefile.PL to generate Mouse/Tiny.pm so we actually have a working 'make dist... X-Git-Tag: 0.32~69 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=e650ba5bf38083cced30b94f5e9c104ee2947e98 fixup Makefile.PL to generate Mouse/Tiny.pm so we actually have a working 'make dist' and new contributors actually produce something that's safe to PAUSE (remember, kiddies, just fucking make it fucking easy to fucking install) --- diff --git a/Changes b/Changes index 9876965..4342132 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Mouse 0.28 + * Alter Makefile.PL so in author mode we generate lib/Mouse/Tiny.pm on + every run so that 'make dist' actually does what it's meant to (mst) 0.27 Thu Jul 2 15:17:37 2009 * Doc updates (Sartak) diff --git a/Makefile.PL b/Makefile.PL index 3170cee..2c3ad42 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -24,6 +24,7 @@ if ($Module::Install::AUTHOR) { } else { print "you don't have a moose. skipping moose compatibility test\n"; } + system("authour/generate-mouse-tiny.pl"); } auto_include;