Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
22 lines
1019 B
Diff
22 lines
1019 B
Diff
diff --git a/src/modules/espeak.c b/src/modules/espeak.c
|
|
index 94a01197..9bb34475 100644
|
|
--- a/src/modules/espeak.c
|
|
+++ b/src/modules/espeak.c
|
|
@@ -898,13 +898,13 @@ static SPDVoice **espeak_list_synthesis_voices()
|
|
path = g_strdup_printf("%s/mbrola/%s", espeak_data, voicename);
|
|
if (access(path, O_RDONLY) != 0) {
|
|
g_free(path);
|
|
- path = g_strdup_printf("/usr/share/mbrola/%s", voicename);
|
|
+ path = g_strdup_printf("@mbrola@/share/mbrola/%s", voicename);
|
|
if (access(path, O_RDONLY) != 0) {
|
|
g_free(path);
|
|
- path = g_strdup_printf("/usr/share/mbrola/%s/%s", voicename, voicename);
|
|
+ path = g_strdup_printf("@mbrola@/share/mbrola/%s/%s", voicename, voicename);
|
|
if (access(path, O_RDONLY) != 0) {
|
|
g_free(path);
|
|
- path = g_strdup_printf("/usr/share/mbrola/voices/%s", voicename);
|
|
+ path = g_strdup_printf("@mbrola@/share/mbrola/voices/%s", voicename);
|
|
if (access(path, O_RDONLY) != 0) {
|
|
g_free(path);
|
|
espeak_mbrola[j] = NULL;
|