1
0
Fork 0
forked from len0rd/rockbox

Fix voice and manual build scripts

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26528 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2010-06-03 20:56:24 +00:00
parent af07a53c98
commit 211e54c27b
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ sub buildit {
`(cd tools && make ) >/dev/null 2>&1`; `(cd tools && make ) >/dev/null 2>&1`;
for my $b (&stablebuilds) { for my $b (&stablebuilds) {
next if ($builds{$b}{configname} < 3); # no variants next if (length($builds{$b}{configname}) > 0); # no variants
runone($b); runone($b);
} }

View file

@ -76,7 +76,7 @@ my $pool="$home/tmp/rockbox-voices-$version/voice-pool";
$ENV{'POOL'}="$pool"; $ENV{'POOL'}="$pool";
for my $b (&stablebuilds) { for my $b (&stablebuilds) {
next if ($builds{$b}{configname} < 3); # no variants next if (length($builds{$b}{configname}) > 0); # no variants
runone($b); runone($b);
} }