From 6bb6c20479c81036496501ec98ce1404202c60f6 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 7 May 2024 15:16:29 -0400 Subject: voice: Don't generate talkclips for directories with 'talkclip.ignore' Add one of these to the .rockbox directory Change-Id: Ibc9733ba31d1b2c49b69ab833d284faa84f5cedd --- tools/buildzip.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/buildzip.pl') diff --git a/tools/buildzip.pl b/tools/buildzip.pl index 59c32d3e3d..65aca59e13 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -388,9 +388,12 @@ sub buildzip { } } - # create the file so the database does not try indexing a folder + # create the file so the database indexer skips this folder open(IGNORE, ">$temp_dir/database.ignore") || die "can't open database.ignore"; close(IGNORE); + # create the file so the talkclip generation skips this folder + open(IGNORE, ">$temp_dir/talkclips.ignore") || die "can't open talkclips.ignore"; + close(IGNORE); # the samsung ypr0 has a loader script that's needed in the zip if ($modelname =~ /samsungypr[01]/) { -- cgit v1.2.3