diff options
author | Roman Khimov <khimov@altell.ru> | 2009-05-19 23:04:38 +0000 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2009-05-30 17:54:58 -0400 |
commit | faffb4e89389f47b6d953f36e0584ce50bc73de2 (patch) | |
tree | 9994991fad74416cb23801f3b47f228fc1b74704 /recipes/glibc | |
parent | 47f74ab0bc9fc498e3565c5d780f40b001c6dcbc (diff) |
(e)glibc-package: enable binary locale generation for powerpc
It works there, so add to whitelist.
Diffstat (limited to 'recipes/glibc')
-rw-r--r-- | recipes/glibc/glibc-package.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes/glibc/glibc-package.bbclass b/recipes/glibc/glibc-package.bbclass index ac7e0f3670..78738c2629 100644 --- a/recipes/glibc/glibc-package.bbclass +++ b/recipes/glibc/glibc-package.bbclass @@ -24,7 +24,7 @@ python __anonymous () { ENABLE_BINARY_LOCALE_GENERATION ?= "0" # BINARY_LOCALE_ARCHES is a space separated list of regular expressions -BINARY_LOCALE_ARCHES ?= "arm.* i[3-6]86 x86_64" +BINARY_LOCALE_ARCHES ?= "arm.* i[3-6]86 x86_64 powerpc" # Set this to zero if you don't want ldconfig in the output package USE_LDCONFIG ?= "1" @@ -250,7 +250,9 @@ python package_do_split_gconvs () { def output_locale_binary(name, locale, encoding): target_arch = bb.data.getVar("TARGET_ARCH", d, 1) if target_arch in ("i486", "i586", "i686"): - target_arch = "i386" + target_arch = "i386" + elif target_arch == "powerpc": + target_arch = "ppc" kernel_ver = bb.data.getVar("OLDEST_KERNEL", d, 1) if kernel_ver is None: |