From d9b74790b81ff0b0478e657b276be41be8f9e6d0 Mon Sep 17 00:00:00 2001 From: rasher 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 932611794..fbf868f54 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; }; -- 2.11.4.GIT