diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-01-09 11:33:09 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-17 14:53:14 +0000 |
commit | 3754d75e49f285e530a3989888410b0877846eb6 (patch) | |
tree | 35feafe27c0cd4d5b791fcc740c69b506036b29b /meta/classes/libc-package.bbclass | |
parent | 4807e0b3aeea3445edd3c46c5da6538064c20e0e (diff) | |
download | poky-3754d75e49f285e530a3989888410b0877846eb6.tar.gz |
locale: fix package's "provides" tag
Fixes this bug: [YOCTO #1874]
Fixes an issue where a locale package depends on one package while it
also provides the same, as seen bellow.
Package: locale-base-de-de
Version: 2.12-r19
Depends: eglibc-binary-localedata-de-de
Provides: virtual-locale-de-de, virtual-locale-de,
eglibc-binary-localedata-de-de
Actually the eglibc-binary-localedata-de-de is ia separate package,
and it should not be part of provides of the locale-base-de-de.
(From OE-Core rev: 49c5ff7197b44c7d29d31506c2425b86bc2c1ff6)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index 1796d3dc40..8cd5fecfad 100644 --- a/meta/classes/libc-package.bbclass +++ b/meta/classes/libc-package.bbclass | |||
@@ -248,9 +248,6 @@ python package_do_split_gconvs () { | |||
248 | libc_name = name | 248 | libc_name = name |
249 | d.setVar('RDEPENDS_%s' % pkgname, legitimize_package_name('%s-binary-localedata-%s' \ | 249 | d.setVar('RDEPENDS_%s' % pkgname, legitimize_package_name('%s-binary-localedata-%s' \ |
250 | % (bpn, libc_name))) | 250 | % (bpn, libc_name))) |
251 | rprovides = (d.getVar('RPROVIDES_%s' % pkgname, True) or "").split() | ||
252 | rprovides.append(legitimize_package_name('%s-binary-localedata-%s' % (bpn, libc_name))) | ||
253 | d.setVar('RPROVIDES_%s' % pkgname, " ".join(rprovides)) | ||
254 | 251 | ||
255 | commands = {} | 252 | commands = {} |
256 | 253 | ||