mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Pass VERSION to *all* make invocations in release scripts
git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_10@31165 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6cc5e6f9ac
commit
3113637050
3 changed files with 6 additions and 6 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue