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
This commit is contained in:
Jonas Häggqvist 2009-03-06 18:59:34 +00:00
parent a32b73e9c3
commit 750b84887a

View file

@ -85,7 +85,7 @@ sub runone {
my ($dir, $confnum, $extra)=@_; my ($dir, $confnum, $extra)=@_;
my $a; my $a;
if(!grep(/$dir/, @doonly)) { if(@doonly > 0 && !grep(/$dir/, @doonly)) {
return; return;
} }
@ -127,7 +127,7 @@ sub runone {
chdir($toplevel); chdir($toplevel);
print "remove all contents in $newo\n" if($verbose); print "remove all contents in $newo\n" if($verbose);
# system("rm -rf $newo"); system("rm -rf $newo");
return $a; return $a;
}; };