summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Parker <rockbox@aeparker.com>2011-02-20 19:27:09 +0000
committerAlex Parker <rockbox@aeparker.com>2011-02-20 19:27:09 +0000
commitbf7276d1d0668006f14c68b8aaffb2855ce36665 (patch)
tree33a656783753110300c9727cd0e660216f4db767
parent1e16923f2542a7b1f75eda3a98f39a5caaca27c7 (diff)
downloadrockbox-bf7276d1d0668006f14c68b8aaffb2855ce36665.tar.gz
rockbox-bf7276d1d0668006f14c68b8aaffb2855ce36665.zip
* Keep the map files instead of building then throwing them away in the release script.
* Pass the release version to make in the release script instead of having to remember to hack up version.sh in the release branch. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29358 a1c6a512-1295-4272-9138-f99709370657
-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 {
49 chdir ".."; 49 chdir "..";
50 50
51 my $o="build-$dir/rockbox.zip"; 51 my $o="build-$dir/rockbox.zip";
52 my $map="build-$dir/rockbox-maps.zip";
52 if (-f $o) { 53 if (-f $o) {
53 my $newo="output/rockbox-$dir-$version.zip"; 54 my $newo="output/rockbox-$dir-$version.zip";
55 my $newmap="output/rockbox-$dir-$version-maps.zip";
54 system("mkdir -p output"); 56 system("mkdir -p output");
55 system("mv $o $newo"); 57 system("mv $o $newo");
56 print "moved $o to $newo\n" if($verbose); 58 print "moved $o to $newo\n" if($verbose);
59 system("mv $map $newmap");
60 print "moved $map to $newmap\n" if($verbose);
57 } 61 }
58 62
59 print "remove all contents in build-$dir\n" if($verbose); 63 print "remove all contents in build-$dir\n" if($verbose);
@@ -106,7 +110,7 @@ sub buildit {
106 `$c`; 110 `$c`;
107 111
108 print "Run 'make'\n" if($verbose); 112 print "Run 'make'\n" if($verbose);
109 `make`; 113 `make VERSION=$version`;
110 114
111 print "Run 'make zip'\n" if($verbose); 115 print "Run 'make zip'\n" if($verbose);
112 `make zip`; 116 `make zip`;