Fix voice and manual build scripts

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_6@26527 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2010-06-03 20:55:32 +00:00
parent 565631fd7b
commit e790549044
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);
} }