summaryrefslogtreecommitdiff
path: root/tools/release/sims.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/sims.pl')
-rwxr-xr-xtools/release/sims.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/release/sims.pl b/tools/release/sims.pl
index 80e3bc2e74..abf652b312 100755
--- a/tools/release/sims.pl
+++ b/tools/release/sims.pl
@@ -4,6 +4,8 @@ use File::Basename;
4use File::Path; 4use File::Path;
5use Cwd; 5use Cwd;
6 6
7require "../builds.pm";
8
7my $verbose, $strip, $update, $doonly, $version; 9my $verbose, $strip, $update, $doonly, $version;
8my @doonly; 10my @doonly;
9 11
@@ -92,7 +94,7 @@ if (!defined($version)) {
92 94
93# made once for all targets 95# made once for all targets
94sub runone { 96sub runone {
95 my ($dir, $confnum, $extra)=@_; 97 my ($dir)=@_;
96 my $a; 98 my $a;
97 99
98 if(@doonly > 0 && !grep(/^$dir$/, @doonly)) { 100 if(@doonly > 0 && !grep(/^$dir$/, @doonly)) {
@@ -104,7 +106,7 @@ sub runone {
104 print "Build in build-$dir\n" if($verbose); 106 print "Build in build-$dir\n" if($verbose);
105 107
106 # build the target 108 # build the target
107 $a = buildit($dir, $confnum, $extra); 109 $a = buildit($dir);
108 110
109 # Do not continue if the rockboxui executable is not created. This will 111 # Do not continue if the rockboxui executable is not created. This will
110 # prevent a good build getting overwritten by a bad build when 112 # prevent a good build getting overwritten by a bad build when