X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=38c8a060f98a44030a946355d972581fd899f947;hb=4c0e2aa7665fbf173a9b0c4827d4cd3cfb5cbd0b;hp=614a4d017f3a1d376700970504a9037f7dc4dd77;hpb=b1a89a060e6c8aaf0a97bb29d331d3908aeea37c;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 614a4d0..38c8a06 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,6 +2,9 @@ use strict; use warnings; use inc::Module::Install; +system($^X, 'author/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0 + or warn "Cannot generate Mouse::Tiny: $!"; + name 'Mouse'; all_from 'lib/Mouse.pm'; @@ -19,9 +22,6 @@ include 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wr recommends 'MRO::Compat' if $] < 5.010; -makemaker_args PL_FILES => { 'author/generate-mouse-tiny.pl' => 'lib/Mouse/Tiny.pm' }; -system 'author/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm'; - if ($Module::Install::AUTHOR) { local @INC = ('lib', @INC); require 'lib/Mouse/Spec.pm'; @@ -39,6 +39,8 @@ if ($Module::Install::AUTHOR) { } } +clean_files 'lib/Mouse/Tiny.pm'; + WriteAll check_nmake => 0; sub create_moose_compatibility_test { @@ -74,7 +76,8 @@ sub create_moose_compatibility_test { return if /failing/; # skip tests in failing/ directories which are Moose specific - return if /100_with_moose/; # tests with Moose + return if /with_moose/; # tests with Moose + return if /100_bugs/; # some tests require Mouse specific files return if /deprecated/; my $basename = File::Basename::basename($_);