1
0
Fork 0
forked from len0rd/rockbox

voice: Don't touch the voice pool file when we reference it.

...With over 14,000 pool files, it's silly.

Change-Id: Ib615e0813caef0506bed4e53099578dc8e74cacc
This commit is contained in:
Solomon Peachy 2024-06-23 14:03:26 -04:00
parent 6319d71296
commit d117debca9

View file

@ -479,7 +479,7 @@ sub generateclips {
$language);
if (-f $pool_file) {
printf("Re-using %s (%s) from pool\n", $id, $voice) if $verbose;
system("touch $pool_file"); # So we know it's still being used.
# system("touch $pool_file"); # So we know it's still being used.
copy($pool_file, $enc);
}
}