From: gfx Date: Mon, 28 Sep 2009 01:45:39 +0000 (+0900) Subject: Fix test-external.pl X-Git-Tag: 0.37~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=7c738ee513510237e009e456c0b09a82c836a84a Fix test-external.pl --- diff --git a/author/test-externals.pl b/author/test-externals.pl index 4b8d498..78c3c3c 100755 --- a/author/test-externals.pl +++ b/author/test-externals.pl @@ -6,6 +6,8 @@ use autodie; my %dist = ( 'HTTP-Engine' => q{git://github.com/http-engine/HTTP-Engine.git}, 'Ark' => q{git://github.com/typester/ark-perl.git}, + +# 'Any-Moose' => q{git://github.com/sartak/any-moose.git}, # has no Makefile.PL :( ); my $distdir = 'externals'; @@ -30,7 +32,7 @@ while(my($name, $repo) = each %dist){ } print "$^X Makefile.PL\n"; - system("$^X Makefile.PL") != 0 or next; + system("$^X Makefile.PL"); print "make test\n"; system "make test";