From: Khem Raj <raj.k...@gmail.com> eglibc-locale is creating the individual locale files which have runtime dependency on ${PN} which is 'eglibc-locale' but problem is that eglibc-locale is an empty package and does not get created so when one asks for adding locales to image then due to the missing dependency in the feeds root file system can not be created.
This patch treates eglibc-locale as if it was eglibc and hence the dependency then is created on libc6 and not not existing eglibc-locale package. Signed-off-by: Khem Raj <raj.k...@gmail.com> Signed-off-by: Saul Wold <s...@linux.intel.com> --- meta/classes/package.bbclass | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 0c7fe80..06e2e04 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -389,6 +389,8 @@ python package_do_split_locales() { dvar = d.getVar('PKGD', True) pn = d.getVar('PN', True) + if pn == "eglibc-locale": + pn = "eglibc" if pn + '-locale' in packages: packages.remove(pn + '-locale') -- 1.7.7.6 _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core