X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=45d8a170af1558374c916d85623521044dddbab3;hb=34c8209c4eac1f2f710e1523ef3b3a248f7a08c8;hp=b017211127cec615f86122f297a513c98ee6e7c3;hpb=bd0fe31fdcb1aefad78cad60d01dd0615e2cba9c;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index b017211..45d8a17 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -32,15 +32,15 @@ if(Mouse::Spec->MouseVersion =~ /_/){ # DEVEL RELEASE my $use_xs; +if($] < 5.008_001){ + $use_xs = 0; +} + for (@ARGV) { /^--pp$/ and $use_xs = 0; /^--xs$/ and $use_xs = 1; } -if($] < 5.008_001){ - $use_xs = 0; -} - if(!defined $use_xs){ $use_xs = cc_available(); } @@ -84,6 +84,8 @@ if (author_context()) { } } +repository 'git://git.moose.perl.org/Mouse.git'; + tests 't/*.t t/*/*.t'; clean_files 'lib/Mouse/Tiny.pm $(O_FILES)';