From 41f6815e0865b6d1c187a07806dc1f02e40ef45c Mon Sep 17 00:00:00 2001 From: Changqing Li Date: Thu, 11 Jul 2019 13:52:57 +0800 Subject: satyr: fix "Nothing RPROVIDES" when multilib enabled Multilib enabled, and add IMAGE_INSTALL_append = " python3-satyr" in local.conf fix below problem: ERROR: Required build target 'lib32-core-image-minimal' has no buildable providers. Missing or unbuildable dependency chain was: ['lib32-core-image-minimal', 'lib32-python3-satyr'] Signed-off-by: Changqing Li Signed-off-by: Khem Raj --- meta-oe/recipes-support/satyr/satyr_0.27.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-support/satyr/satyr_0.27.bb b/meta-oe/recipes-support/satyr/satyr_0.27.bb index 10dfc2bade..cc07dcb06e 100644 --- a/meta-oe/recipes-support/satyr/satyr_0.27.bb +++ b/meta-oe/recipes-support/satyr/satyr_0.27.bb @@ -19,8 +19,8 @@ DEPENDS += " \ gdb \ " -PACKAGES += "python3-${PN}" -FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/${BPN}" +PACKAGES += "python3-${BPN}" +FILES_python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/${BPN}" PACKAGECONFIG ??= "python3 rpm" PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python2" -- cgit 1.2.3-korg