summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/release/bins.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/release/bins.pl b/tools/release/bins.pl
index 8aa44ab64d..f45450a90d 100755
--- a/tools/release/bins.pl
+++ b/tools/release/bins.pl
@@ -49,11 +49,15 @@ sub runone {
chdir "..";
my $o="build-$dir/rockbox.zip";
+ my $map="build-$dir/rockbox-maps.zip";
if (-f $o) {
my $newo="output/rockbox-$dir-$version.zip";
+ my $newmap="output/rockbox-$dir-$version-maps.zip";
system("mkdir -p output");
system("mv $o $newo");
print "moved $o to $newo\n" if($verbose);
+ system("mv $map $newmap");
+ print "moved $map to $newmap\n" if($verbose);
}
print "remove all contents in build-$dir\n" if($verbose);
@@ -106,7 +110,7 @@ sub buildit {
`$c`;
print "Run 'make'\n" if($verbose);
- `make`;
+ `make VERSION=$version`;
print "Run 'make zip'\n" if($verbose);
`make zip`;