summaryrefslogtreecommitdiff
path: root/tools/release/bins.pl
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2011-12-07 17:59:11 +0000
committerFrank Gevaerts <frank@gevaerts.be>2011-12-07 17:59:11 +0000
commitd0731064c8a6fc81218bcbd996636b0a46c6ff10 (patch)
tree10519ba65028c6287e7008d38abc24f55e8dd928 /tools/release/bins.pl
parent790be2de323c8a2f3699f8138217ce0ae8cbc7c7 (diff)
downloadrockbox-d0731064c8a6fc81218bcbd996636b0a46c6ff10.tar.gz
rockbox-d0731064c8a6fc81218bcbd996636b0a46c6ff10.zip
Pass VERSION to *all* make invocations in release scripts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31166 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 99982be41a..92380e5464 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 {