diff options
author | Changqing Li <changqing.li@windriver.com> | 2019-07-11 13:52:55 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-07-11 14:01:28 -0700 |
commit | 478d0bd9f5e913868d80402d114457b07340846e (patch) | |
tree | c7e73d48f1897e5cfa0f9c8cd9b91879bd7510eb /meta-oe | |
parent | bb1568e2db3436e95eda53acb3044ddbba01b57d (diff) | |
download | meta-openembedded-478d0bd9f5e913868d80402d114457b07340846e.tar.gz |
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@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb | 7 |
1 files 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 398ca5c21..3103748e4 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" | |||
31 | PACKAGECONFIG[python] = "--with-python,--without-python,python,python" | 31 | PACKAGECONFIG[python] = "--with-python,--without-python,python,python" |
32 | PACKAGECONFIG[python3] = "--with-python3,--without-python3,python3,python3" | 32 | PACKAGECONFIG[python3] = "--with-python3,--without-python3,python3,python3" |
33 | 33 | ||
34 | RDEPENDS_python3-${PN} += "${PN}" | 34 | RDEPENDS_python3-${BPN} += "${PN}" |
35 | |||
36 | PACKAGES += "python3-${PN}" | ||
37 | FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/*" | ||
38 | 35 | ||
36 | PACKAGES += "python3-${BPN}" | ||
37 | FILES_python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/*" | ||