diff options
| author | Jonas Häggqvist <rasher@rasher.dk> | 2009-03-06 18:59:34 +0000 |
|---|---|---|
| committer | Jonas Häggqvist <rasher@rasher.dk> | 2009-03-06 18:59:34 +0000 |
| commit | 750b84887a76d391f0e952d8f720c8b07f8ba09f (patch) | |
| tree | 5d3bad1b3d670d104857a8d86f433bed33f2a81b /tools/release | |
| parent | a32b73e9c3461e3917963871c5638234635904da (diff) | |
| download | rockbox-750b84887a76d391f0e952d8f720c8b07f8ba09f.zip rockbox-750b84887a76d391f0e952d8f720c8b07f8ba09f.tar.gz rockbox-750b84887a76d391f0e952d8f720c8b07f8ba09f.tar.bz2 rockbox-750b84887a76d391f0e952d8f720c8b07f8ba09f.tar.xz | |
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
Diffstat (limited to 'tools/release')
| -rwxr-xr-x | tools/release/sims.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 9326117..fbf868f 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; }; |