uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
21
pkgs/development/libraries/speechd/fix-mbrola-paths.patch
Normal file
21
pkgs/development/libraries/speechd/fix-mbrola-paths.patch
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue