[Catalyst-commits] r10402 - trunk/examples/SmokeServer/script
caelum at dev.catalyst.perl.org
caelum at dev.catalyst.perl.org
Sun May 31 01:57:00 GMT 2009
Author: caelum
Date: 2009-05-31 01:57:00 +0000 (Sun, 31 May 2009)
New Revision: 10402
Modified:
trunk/examples/SmokeServer/script/cpan_installdeps.pl
Log:
stupid bug
Modified: trunk/examples/SmokeServer/script/cpan_installdeps.pl
===================================================================
--- trunk/examples/SmokeServer/script/cpan_installdeps.pl 2009-05-31 00:23:33 UTC (rev 10401)
+++ trunk/examples/SmokeServer/script/cpan_installdeps.pl 2009-05-31 01:57:00 UTC (rev 10402)
@@ -56,8 +56,8 @@
CPAN::Shell->notest(install => $name);
}
- (system "make realclean >/dev/null 2>&1" == 0)
- or die "make realclean in $dir/$dist failed";
+ system 'make realclean >/dev/null 2>&1';
+ system './Build realclean >/dev/null 2>&1';
}
print "************ DONE ***************\n";
More information about the Catalyst-commits
mailing list