eglibc-package.bbclass: fix missing RPROVIDES for virtual-locale-*
authorMartin Jansa <Martin.Jansa@gmail.com>
Thu, 7 Oct 2010 08:33:19 +0000 (10:33 +0200)
committerMartin Jansa <Martin.Jansa@gmail.com>
Fri, 8 Oct 2010 04:40:29 +0000 (06:40 +0200)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
recipes/eglibc/eglibc-package.bbclass
recipes/eglibc/eglibc.inc

index 5871be0..dbca1ab 100644 (file)
@@ -351,7 +351,9 @@ python package_do_split_gconvs () {
                else:
                    glibc_name = name
                bb.data.setVar('RDEPENDS_%s' % pkgname, legitimize_package_name('eglibc-binary-localedata-%s' % glibc_name), d)
-               bb.data.setVar('RPROVIDES_%s' % pkgname, 'glibc-binary-localedata-%s' % glibc_name, d)
+               rprovides = bb.data.getVar("RPROVIDES_%s" % pkgname, d, 1)
+               rprovides += ' glibc-binary-localedata-%s' % glibc_name
+               bb.data.setVar('RPROVIDES_%s' % pkgname, rprovides, d)
 
        def output_locale_binary(name, pkgname, locale, encoding):
                # This is a hack till linux-libc-headers gets patched for the missing arm syscalls and all arm device kernels as well
index a68f343..754a12b 100644 (file)
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.eglibc.org/home"
 SECTION = "libs"
 PRIORITY = "required"
 LICENSE = "LGPL"
-INC_PR = "r14"
+INC_PR = "r15"
 # nptl needs unwind support in gcc, which can't be built without glibc.
 DEPENDS = "virtual/${TARGET_PREFIX}gcc-intermediate linux-libc-headers"
 #this leads to circular deps, so lets not add it yet