libc-package: restore correct mangling behavior for locale names

This reverts 19fb07bf337e1d724798e2eb4479c35fc45b1941 and restores
the behaviour of the code to the way it was prior to 561d875404.

See http://lists.linuxtogo.org/pipermail/openembedded-core/2011-August/007407.html and subsequent messages.

(From OE-Core rev: e5810439cc394d8ebfc264b05e1fbfad19e8fcd3)

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Phil Blundell 2011-08-26 17:51:47 +01:00 committed by Richard Purdie
parent ac47c1b30d
commit 9df33286b0
1 changed files with 2 additions and 2 deletions

View File

@ -241,9 +241,9 @@ python package_do_split_gconvs () {
(locale, encoding, locale), d)
def output_locale_binary_rdepends(name, pkgname, locale, encoding):
m = re.match("(.*)_(.*)", name)
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' \