diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-01-04 09:13:11 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-28 12:29:31 +0000 |
commit | 482a933ac94da1475b8f9d99e1efed41c81df9e5 (patch) | |
tree | 9ea206c0e276b0a28488496772d7568630265770 | |
parent | d7b8ad5c294e371eee7630840269a6df10511695 (diff) | |
download | poky-482a933ac94da1475b8f9d99e1efed41c81df9e5.tar.gz |
eglibc_2.17: Fix Tibetian locale generation error
This is fallout of BZ #13950 fix to glibc
(From OE-Core rev: 4b39d90c84b1c1577b6744e7117502069c5bf719)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/eglibc/eglibc-2.17/fix-tibetian-locales.patch | 38 | ||||
-rw-r--r-- | meta/recipes-core/eglibc/eglibc_2.17.bb | 1 |
2 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-2.17/fix-tibetian-locales.patch b/meta/recipes-core/eglibc/eglibc-2.17/fix-tibetian-locales.patch new file mode 100644 index 0000000000..25c43a9fe6 --- /dev/null +++ b/meta/recipes-core/eglibc/eglibc-2.17/fix-tibetian-locales.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | cross localedef fails to compile these locales because name_fmt field is empty | ||
2 | It is not acceptable for cross localedef and it errors out | ||
3 | |||
4 | LC_NAME: field `name_fmt' not defined | ||
5 | |||
6 | We therefore give a dummy string to the format, the real fix needs some native | ||
7 | tibetian person to define proper name_fmt | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | |||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
12 | |||
13 | Index: libc/localedata/locales/bo_CN | ||
14 | =================================================================== | ||
15 | --- libc.orig/localedata/locales/bo_CN 2012-11-17 09:50:14.000000000 -0800 | ||
16 | +++ libc/localedata/locales/bo_CN 2013-01-04 08:55:15.593612288 -0800 | ||
17 | @@ -145,7 +145,7 @@ | ||
18 | LC_NAME | ||
19 | % FIXME | ||
20 | |||
21 | -name_fmt "" | ||
22 | +name_fmt "FIXME" | ||
23 | % name_gen "FIXME" | ||
24 | % name_miss "FIXME" | ||
25 | % name_mr "FIXME" | ||
26 | Index: libc/localedata/locales/bo_IN | ||
27 | =================================================================== | ||
28 | --- libc.orig/localedata/locales/bo_IN 2012-11-17 09:50:14.000000000 -0800 | ||
29 | +++ libc/localedata/locales/bo_IN 2013-01-04 08:54:12.345609028 -0800 | ||
30 | @@ -70,7 +70,7 @@ | ||
31 | |||
32 | LC_NAME | ||
33 | % FIXME | ||
34 | -name_fmt "" | ||
35 | +name_fmt "FIXME" | ||
36 | % name_gen "FIXME" | ||
37 | % name_miss "FIXME" | ||
38 | % name_mr "FIXME" | ||
diff --git a/meta/recipes-core/eglibc/eglibc_2.17.bb b/meta/recipes-core/eglibc/eglibc_2.17.bb index b2585bc943..f474a783a6 100644 --- a/meta/recipes-core/eglibc/eglibc_2.17.bb +++ b/meta/recipes-core/eglibc/eglibc_2.17.bb | |||
@@ -25,6 +25,7 @@ SRC_URI = "http://downloads.yoctoproject.org/releases/eglibc/eglibc-${PV}-svnr22 | |||
25 | file://tzselect-sh.patch \ | 25 | file://tzselect-sh.patch \ |
26 | file://tzselect-awk.patch \ | 26 | file://tzselect-awk.patch \ |
27 | file://0001-eglibc-run-libm-err-tab.pl-with-specific-dirs-in-S.patch \ | 27 | file://0001-eglibc-run-libm-err-tab.pl-with-specific-dirs-in-S.patch \ |
28 | file://fix-tibetian-locales.patch \ | ||
28 | " | 29 | " |
29 | SRC_URI[md5sum] = "1464af54779c2c7d1078df9ce2e41791" | 30 | SRC_URI[md5sum] = "1464af54779c2c7d1078df9ce2e41791" |
30 | SRC_URI[sha256sum] = "97c3991a3772f513cf704841d20c275ac48895fad2e27802dda557c0196cba6b" | 31 | SRC_URI[sha256sum] = "97c3991a3772f513cf704841d20c275ac48895fad2e27802dda557c0196cba6b" |