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:
parent
790be2de32
commit
d0731064c8
3 changed files with 6 additions and 6 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue