From 750b84887a76d391f0e952d8f720c8b07f8ba09f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=A4ggqvist?= Date: Fri, 6 Mar 2009 18:59:34 +0000 Subject: [PATCH] Don't skip the cleanup I commented out for debugging and build all targets if no specific targets are specified. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20216 a1c6a512-1295-4272-9138-f99709370657 --- tools/release/sims.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 932611794b..fbf868f541 100755 --- a/tools/release/sims.pl +++ b/tools/release/sims.pl @@ -85,7 +85,7 @@ sub runone { my ($dir, $confnum, $extra)=@_; my $a; - if(!grep(/$dir/, @doonly)) { + if(@doonly > 0 && !grep(/$dir/, @doonly)) { return; } @@ -127,7 +127,7 @@ sub runone { chdir($toplevel); print "remove all contents in $newo\n" if($verbose); -# system("rm -rf $newo"); + system("rm -rf $newo"); return $a; };