fixup Makefile.PL to generate Mouse/Tiny.pm so we actually have a working 'make dist...
Matt S Trout [Thu, 2 Jul 2009 20:17:34 +0000 (21:17 +0100)]
Changes
Makefile.PL

diff --git a/Changes b/Changes
index 9876965..4342132 100644 (file)
--- 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)
index 3170cee..2c3ad42 100755 (executable)
@@ -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;