mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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>
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user