From 687efa2c63f50b1bf97eef87de7971d5ba6a0f27 Mon Sep 17 00:00:00 2001 From: Yu Ke Date: Fri, 22 Jul 2011 13:51:33 +0800 Subject: 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 Signed-off-by: Richard Purdie --- meta/recipes-core/eglibc/eglibc-package.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" RRECOMMENDS_${PN}-localedatas = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-localedata") != -1])}" RPROVIDES_eglibc = "glibc" -RPROVIDES_eglibc-utils = "glibc-utils" +RPROVIDES_${PN}-utils = "glibc-utils" RPROVIDES_eglibc-pic = "glibc-pic" RPROVIDES_eglibc-dev = "glibc-dev" RPROVIDES_eglibc-doc = "glibc-doc" -- cgit v1.2.3-54-g00ecf