[oe-commits] [meta-openembedded] 04/21: volume-key: fix "Nothing RPROVIDES" when multilib enabled

git at git.openembedded.org git at git.openembedded.org
Tue Sep 3 02:41:33 UTC 2019


This is an automated email from the git hooks/post-receive script.

armin_kuster pushed a commit to branch warrior-next
in repository meta-openembedded.

commit c73bf450d73e5cc08fd042cb5c98db1631e475bc
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Thu Jul 11 13:52:55 2019 +0800

    volume-key: fix "Nothing RPROVIDES" when multilib enabled
    
    Multilib enabled, and add IMAGE_INSTALL_append = " python3-volume-key"
    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-volume-key']
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb b/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb
index 398ca5c..3103748 100644
--- a/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb
+++ b/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb
@@ -31,8 +31,7 @@ PACKAGECONFIG ??= "python3"
 PACKAGECONFIG[python] = "--with-python,--without-python,python,python"
 PACKAGECONFIG[python3] = "--with-python3,--without-python3,python3,python3"
 
-RDEPENDS_python3-${PN} += "${PN}"
-
-PACKAGES += "python3-${PN}"
-FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/*"
+RDEPENDS_python3-${BPN} += "${PN}"
 
+PACKAGES += "python3-${BPN}"
+FILES_python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/*"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list