1
0
Fork 0
forked from len0rd/rockbox

Pass VERSION to *all* make invocations in release scripts

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31166 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2011-12-07 17:59:11 +00:00
parent 790be2de32
commit d0731064c8
3 changed files with 6 additions and 6 deletions

View file

@ -117,13 +117,13 @@ sub buildit {
`make VERSION=$version`; `make VERSION=$version`;
print "Run 'make zip'\n" if($verbose); print "Run 'make zip'\n" if($verbose);
`make zip`; `make zip VERSION=$version`;
print "Run 'make mapzip'\n" if($verbose); print "Run 'make mapzip'\n" if($verbose);
`make mapzip`; `make mapzip VERSION=$version`;
print "Run 'make elfzip'\n" if($verbose); print "Run 'make elfzip'\n" if($verbose);
`make elfzip`; `make elfzip VERSION=$version`;
} }
sub buildfonts { sub buildfonts {

View file

@ -65,10 +65,10 @@ sub buildit {
`$c`; `$c`;
print "Run 'make'\n" if($verbose); 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); 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 # run make in tools first to make sure they're up-to-date

View file

@ -62,7 +62,7 @@ sub buildit {
`$c`; `$c`;
print "Run 'make voice'\n" if($verbose); 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 # run make in tools first to make sure they're up-to-date