mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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:
parent
a32b73e9c3
commit
750b84887a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue