diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2011-12-07 17:59:11 +0000 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2011-12-07 17:59:11 +0000 |
| commit | d0731064c8a6fc81218bcbd996636b0a46c6ff10 (patch) | |
| tree | 10519ba65028c6287e7008d38abc24f55e8dd928 /tools | |
| parent | 790be2de323c8a2f3699f8138217ce0ae8cbc7c7 (diff) | |
| download | rockbox-d0731064c8a6fc81218bcbd996636b0a46c6ff10.zip rockbox-d0731064c8a6fc81218bcbd996636b0a46c6ff10.tar.gz rockbox-d0731064c8a6fc81218bcbd996636b0a46c6ff10.tar.bz2 rockbox-d0731064c8a6fc81218bcbd996636b0a46c6ff10.tar.xz | |
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')
| -rwxr-xr-x | tools/release/bins.pl | 6 | ||||
| -rwxr-xr-x | tools/release/manuals.pl | 4 | ||||
| -rwxr-xr-x | tools/release/voices.pl | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/tools/release/bins.pl b/tools/release/bins.pl index 99982be..92380e5 100755 --- a/tools/release/bins.pl +++ b/tools/release/bins.pl @@ -117,13 +117,13 @@ sub buildit { `make VERSION=$version`; print "Run 'make zip'\n" if($verbose); - `make zip`; + `make zip VERSION=$version`; print "Run 'make mapzip'\n" if($verbose); - `make mapzip`; + `make mapzip VERSION=$version`; print "Run 'make elfzip'\n" if($verbose); - `make elfzip`; + `make elfzip VERSION=$version`; } sub buildfonts { diff --git a/tools/release/manuals.pl b/tools/release/manuals.pl index 3992da5..91a67cd 100755 --- a/tools/release/manuals.pl +++ b/tools/release/manuals.pl @@ -65,10 +65,10 @@ sub buildit { `$c`; print "Run 'make'\n" if($verbose); - `make manual 2>/dev/null`; + `make manual VERSION=$version 2>/dev/null`; print "Run 'make manual-zip'\n" if($verbose); - `make manual-zip 2>/dev/null`; + `make manual-zip VERSION=$version 2>/dev/null`; } # run make in tools first to make sure they're up-to-date diff --git a/tools/release/voices.pl b/tools/release/voices.pl index d4a91b1..0f4df27 100755 --- a/tools/release/voices.pl +++ b/tools/release/voices.pl @@ -62,7 +62,7 @@ sub buildit { `$c`; print "Run 'make voice'\n" if($verbose); - print `make voice 2>/dev/null`; + print `make voice VERSION=$version 2>/dev/null`; } # run make in tools first to make sure they're up-to-date |