summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-06-23 14:03:26 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-06-23 14:06:46 -0400
commitd117debca9701fb980bbc1dec6e73c1ad5c397ad (patch)
treece24ab8eab416957c96b9678ac73de2b493cf950 /tools
parent6319d71296ae1f6d5e3ca1418702715805bb9ba4 (diff)
downloadrockbox-d117debca9701fb980bbc1dec6e73c1ad5c397ad.tar.gz
rockbox-d117debca9701fb980bbc1dec6e73c1ad5c397ad.zip
voice: Don't touch the voice pool file when we reference it.
...With over 14,000 pool files, it's silly. Change-Id: Ib615e0813caef0506bed4e53099578dc8e74cacc
Diffstat (limited to 'tools')
-rwxr-xr-xtools/voice.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/voice.pl b/tools/voice.pl
index b2aadbcfab..1b58f5a67f 100755
--- a/tools/voice.pl
+++ b/tools/voice.pl
@@ -479,7 +479,7 @@ sub generateclips {
479 $language); 479 $language);
480 if (-f $pool_file) { 480 if (-f $pool_file) {
481 printf("Re-using %s (%s) from pool\n", $id, $voice) if $verbose; 481 printf("Re-using %s (%s) from pool\n", $id, $voice) if $verbose;
482 system("touch $pool_file"); # So we know it's still being used. 482# system("touch $pool_file"); # So we know it's still being used.
483 copy($pool_file, $enc); 483 copy($pool_file, $enc);
484 } 484 }
485 } 485 }