diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-08-24 20:32:00 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-24 19:23:32 -0700 |
commit | 19fb07bf337e1d724798e2eb4479c35fc45b1941 (patch) | |
tree | 0c478e86728a200bbb252814c73a003e2d485439 /meta/classes/libc-package.bbclass | |
parent | 332f2a9febfc3697ed4a20fca3016e0399ae90eb (diff) | |
download | openembedded-core-19fb07bf337e1d724798e2eb4479c35fc45b1941.tar.gz openembedded-core-19fb07bf337e1d724798e2eb4479c35fc45b1941.tar.bz2 openembedded-core-19fb07bf337e1d724798e2eb4479c35fc45b1941.zip |
libc-package bbclass: fix binary localedata dependency code
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>
Diffstat (limited to 'meta/classes/libc-package.bbclass')
-rw-r--r-- | meta/classes/libc-package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index 0d5ce20fe5..d3b33d6c5c 100644 --- a/meta/classes/libc-package.bbclass +++ b/meta/classes/libc-package.bbclass @@ -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' \ |