summaryrefslogtreecommitdiff
path: root/tools/release/bins.pl
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2011-12-07 17:58:28 +0000
committerFrank Gevaerts <frank@gevaerts.be>2011-12-07 17:58:28 +0000
commit31136370502e3dac4b7b2f0ebaf1ff707d931a79 (patch)
treecb9055747fd270dde66158d01fb33cd2a328d1b7 /tools/release/bins.pl
parent6cc5e6f9acb6112c5c52ee39aa0a3364b7c6d850 (diff)
downloadrockbox-v3.10.tar.gz
rockbox-v3.10.zip
Pass VERSION to *all* make invocations in release scriptsv3.10-finalv3.10
git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_10@31165 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/release/bins.pl')
-rwxr-xr-xtools/release/bins.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/release/bins.pl b/tools/release/bins.pl
index c7af1f64c2..bd979ac670 100755
--- a/tools/release/bins.pl
+++ b/tools/release/bins.pl
@@ -117,13 +117,13 @@ sub buildit {
117 `make VERSION=$version`; 117 `make VERSION=$version`;
118 118
119 print "Run 'make zip'\n" if($verbose); 119 print "Run 'make zip'\n" if($verbose);
120 `make zip`; 120 `make zip VERSION=$version`;
121 121
122 print "Run 'make mapzip'\n" if($verbose); 122 print "Run 'make mapzip'\n" if($verbose);
123 `make mapzip`; 123 `make mapzip VERSION=$version`;
124 124
125 print "Run 'make elfzip'\n" if($verbose); 125 print "Run 'make elfzip'\n" if($verbose);
126 `make elfzip`; 126 `make elfzip VERSION=$version`;
127} 127}
128 128
129sub buildfonts { 129sub buildfonts {