Accept FS#8236: make voice should overwrite existing .voice files.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15835 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Stéphane Doyon 2007-11-27 13:47:52 +00:00
parent a0224590d4
commit 1dff29a9d6

View file

@ -398,10 +398,7 @@ sub createvoice {
our $verbose;
my ($language, $target_id) = @_;
my $outfile = "";
my $i = 0;
do {
$outfile = sprintf("%s%s.voice", $language, ($i++ == 0 ? '' : '-'.$i));
} while (-f $outfile);
$outfile = sprintf("%s.voice", $language);
printf("Saving voice file to %s\n", $outfile) if $verbose;
my $cmd = "voicefont 'voicefontids' $target_id ./ $outfile";
print("> $cmd\n") if $verbose;