diff options
author | Changqing Li <changqing.li@windriver.com> | 2019-07-11 13:52:57 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-07-11 14:01:28 -0700 |
commit | 41f6815e0865b6d1c187a07806dc1f02e40ef45c (patch) | |
tree | 080c5b1f71906194adde99d3fcab743a2e38f774 | |
parent | 29ad635bdd92574a22ded724be96e8882dd37c6b (diff) | |
download | meta-openembedded-41f6815e0865b6d1c187a07806dc1f02e40ef45c.tar.gz |
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 <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/satyr/satyr_0.27.bb | 4 |
1 files 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 += " \ | |||
19 | gdb \ | 19 | gdb \ |
20 | " | 20 | " |
21 | 21 | ||
22 | PACKAGES += "python3-${PN}" | 22 | PACKAGES += "python3-${BPN}" |
23 | FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/${BPN}" | 23 | FILES_python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/${BPN}" |
24 | 24 | ||
25 | PACKAGECONFIG ??= "python3 rpm" | 25 | PACKAGECONFIG ??= "python3 rpm" |
26 | PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python2" | 26 | PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python2" |