Fix has()
[gitmo/Mouse.git] / Makefile.PL
index b017211..45d8a17 100755 (executable)
@@ -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)';