summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-04-18 17:16:49 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-04-21 18:07:23 -0400
commit06cf2f0da5bbba55524a5ed52c25730dcb4ea284 (patch)
treeb7485d4f452d695d697dba49b8c337e09674b0d5
parentea5ce8034b4a1ead1227114308889511dbfa9539 (diff)
downloadrockbox-06cf2f0da5bbba55524a5ed52c25730dcb4ea284.tar.gz
rockbox-06cf2f0da5bbba55524a5ed52c25730dcb4ea284.zip
voice: touch re-used voice pool files so we know they're used.
Change-Id: I13779845884f770aabb921543a9fa589fc89294e
-rwxr-xr-xtools/voice.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/voice.pl b/tools/voice.pl
index 2cb7867eb2..6b3f807854 100755
--- a/tools/voice.pl
+++ b/tools/voice.pl
@@ -425,6 +425,7 @@ sub generateclips {
425 $language); 425 $language);
426 if (-f $pool_file) { 426 if (-f $pool_file) {
427 printf("Re-using %s (%s) from pool\n", $id, $voice) if $verbose; 427 printf("Re-using %s (%s) from pool\n", $id, $voice) if $verbose;
428 system("touch $pool_file"); # So we know it's still being used.
428 copy($pool_file, $enc); 429 copy($pool_file, $enc);
429 } 430 }
430 } 431 }