diff options
author | Yu Ke <ke.yu@intel.com> | 2011-07-22 13:51:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 16:18:51 +0100 |
commit | 687efa2c63f50b1bf97eef87de7971d5ba6a0f27 (patch) | |
tree | 3090cf1158952449282fec9161a40ee25ec004ed /meta | |
parent | 350a8916c3cd3e6a8306f9ad15d7eaff9d597f56 (diff) | |
download | poky-687efa2c63f50b1bf97eef87de7971d5ba6a0f27.tar.gz |
eglibc: fix for multilib RPROVIDES issue
in eglibc-package.inc, the "PACKAGES" variable use the ${PN} reference,
while RPROVIDES does not use ${PN}. This will lead multilib.bbclass
not mapping its RPROVIDES, and cause "NO RPROVIDER: lib64-glibc-utils"
error.
This patch unify the recipe to fix this issue
(From OE-Core rev: 37ff0fea8f7180b1a9d91d24dfe1735730427497)
Signed-off-by: Yu Ke <ke.yu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/eglibc/eglibc-package.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc index a995f4f610..7646ea420e 100644 --- a/meta/recipes-core/eglibc/eglibc-package.inc +++ b/meta/recipes-core/eglibc/eglibc-package.inc | |||
@@ -43,7 +43,7 @@ PACKAGES += "${PN}-localedatas" | |||
43 | RRECOMMENDS_${PN}-localedatas = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-localedata") != -1])}" | 43 | RRECOMMENDS_${PN}-localedatas = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-localedata") != -1])}" |
44 | 44 | ||
45 | RPROVIDES_eglibc = "glibc" | 45 | RPROVIDES_eglibc = "glibc" |
46 | RPROVIDES_eglibc-utils = "glibc-utils" | 46 | RPROVIDES_${PN}-utils = "glibc-utils" |
47 | RPROVIDES_eglibc-pic = "glibc-pic" | 47 | RPROVIDES_eglibc-pic = "glibc-pic" |
48 | RPROVIDES_eglibc-dev = "glibc-dev" | 48 | RPROVIDES_eglibc-dev = "glibc-dev" |
49 | RPROVIDES_eglibc-doc = "glibc-doc" | 49 | RPROVIDES_eglibc-doc = "glibc-doc" |