]> code.ossystems Code Review - openembedded-core.git/commitdiff
libc-package bbclass: fix binary localedata dependency code
authorKoen Kooi <koen@dominion.thruhere.net>
Wed, 24 Aug 2011 18:32:00 +0000 (20:32 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 25 Aug 2011 02:23:32 +0000 (19:23 -0700)
When using binary locales rootfs generation fails with:

| Unknown package 'locale-base-en-us'.
| Collected errors:
|  * opkg_install_cmd: Cannot install package locale-base-en-us.

This is due to:

$ dpkg-deb -I ipk/armv7a/locale-base-en-us_2.12-r16_armv7a.ipk | grep Depends
 Depends: eglibc-binary-localedata-en.us

Note the '.' seperator

$ ls ipk/armv7a/ | grep binary-localedata-en | grep us
eglibc-binary-localedata-en-us_2.12-r16_armv7a.ipk

Note the '-' seperator vs the '.' in the locale-base packages.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/libc-package.bbclass

index 0d5ce20fe5943f11d33bb565840fc0437ce3511b..d3b33d6c5c4d035201bc25541d0cf17dc7e908bc 100644 (file)
@@ -243,7 +243,7 @@ python package_do_split_gconvs () {
        def output_locale_binary_rdepends(name, pkgname, locale, encoding):
                m = re.match("(.*)_(.*)", name)
                if m:
-                       libc_name = "%s.%s" % (m.group(1), m.group(2).lower().replace("-",""))
+                       libc_name = "%s-%s" % (m.group(1), m.group(2).lower().replace("-",""))
                else:
                        libc_name = name
                bb.data.setVar('RDEPENDS_%s' % pkgname, legitimize_package_name('%s-binary-localedata-%s' \