mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27: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 ($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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue