| Submitter | Saul Wold |
|---|---|
| Date | April 11, 2012, 1:33 a.m. |
| Message ID | <ad12e7da22c3eb883b621adc78cea8e2c755739f.1334107957.git.sgw@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/25557/ |
| State | New |
| Headers | show |
Comments
Op 11 apr. 2012, om 03:33 heeft Saul Wold het volgende geschreven: > From: Nitin A Kamble <nitin.a.kamble@intel.com> > > Only add locale package dependencies if the eglibc is configured > with locale support. > This avoids dependencies issues for distros such as poky-tiny That's a packaging change and hence needs a PR bump.
Patch
diff --git a/meta/conf/distro/include/tclibc-eglibc.inc b/meta/conf/distro/include/tclibc-eglibc.inc index 8b8a214..aed82d1 100644 --- a/meta/conf/distro/include/tclibc-eglibc.inc +++ b/meta/conf/distro/include/tclibc-eglibc.inc @@ -23,10 +23,19 @@ LIBC_DEPENDENCIES = "libsegfault \ eglibc-dev \ eglibc-utils \ eglibc-thread-db \ - eglibc-localedata-i18n \ - eglibc-gconv-ibm850 \ - eglibc-gconv-cp1252 \ - eglibc-gconv-iso8859-1 \ - eglibc-gconv-iso8859-15 \ - locale-base-en-us \ - locale-base-en-gb " + ${@get_libc_locales_dependencies(d)}" + +LIBC_LOCALE_DEPENDENCIES = "\ + eglibc-localedata-i18n \ + eglibc-gconv-ibm850 \ + eglibc-gconv-cp1252 \ + eglibc-gconv-iso8859-1 \ + eglibc-gconv-iso8859-15 \ + locale-base-en-us \ + locale-base-en-gb" + +def get_libc_locales_dependencies(d): + if 'libc-locales' in (d.getVar('DISTRO_FEATURES', True) or '').split() : + return d.getVar('LIBC_LOCALE_DEPENDENCIES', True) or '' + else: + return ''