diff options
author | Kai Kang <kai.kang@windriver.com> | 2018-12-05 08:00:56 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-05 22:30:19 +0000 |
commit | a0352216915da500536fbb73c1d999e90d999217 (patch) | |
tree | 31beee2e1ad4107d9041bbdb8e75130dc94aef4f /meta/conf | |
parent | 3a439047bf51a0bae736d9dd6de91d8b8ab907cb (diff) | |
download | poky-a0352216915da500536fbb73c1d999e90d999217.tar.gz |
packages: respect PACKAGE_NO_GCONV
PACKAGE_NO_GCONV is set in libc-package.bbclass if not all of
'libc-charsets libc-locale-code libc-locales' included in
DISTRO_FEATURES. And then no packages glibc-gconv-* glibc-charmap-* and
glibc-localedata-* is created. Update recipes and conf file which depend
on these packages to check required distro features.
(From OE-Core rev: 58446992de0f16a345f1f55b66d0d34d31dc341b)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/distro/include/tclibc-glibc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/distro/include/tclibc-glibc.inc b/meta/conf/distro/include/tclibc-glibc.inc index 8d1076440f..abe619aaac 100644 --- a/meta/conf/distro/include/tclibc-glibc.inc +++ b/meta/conf/distro/include/tclibc-glibc.inc | |||
@@ -32,7 +32,7 @@ LIBC_LOCALE_DEPENDENCIES = "\ | |||
32 | glibc-gconv-iso8859-15" | 32 | glibc-gconv-iso8859-15" |
33 | 33 | ||
34 | def get_libc_locales_dependencies(d): | 34 | def get_libc_locales_dependencies(d): |
35 | if 'libc-locales' in (d.getVar('DISTRO_FEATURES') or '').split() : | 35 | if bb.utils.contains('DISTRO_FEATURES', 'libc-charsets libc-locale-code libc-locales', True, False, d): |
36 | return d.getVar('LIBC_LOCALE_DEPENDENCIES') or '' | 36 | return d.getVar('LIBC_LOCALE_DEPENDENCIES') or '' |
37 | else: | 37 | else: |
38 | return '' | 38 | return '' |