diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2017-10-18 21:45:17 -0400 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2018-02-01 07:32:03 -0800 |
| commit | f83f2907723761eb0623ac04dee77063cf4aff7d (patch) | |
| tree | 29f8fc1b9eac02ff8651ffc4e7ab05f24d28bc04 /meta-oe/recipes-extended | |
| parent | c5939bd9d2bf824356c6ac6818b0155925f18bd8 (diff) | |
| download | meta-openembedded-f83f2907723761eb0623ac04dee77063cf4aff7d.tar.gz | |
libreport: fix Nothing RPROVIDES 'lib32-python3-libreport'
While multilib enabled, if other recipe RDEPENDS python3-libreport,
it failed with:
...
ERROR: Nothing RPROVIDES 'lib32-python3-libreport'
...
Do not use python3-${PN} could fix the issue.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
(cherry picked from commit 5d6d21e98ed594809169d2b2f6964e90a3369a96)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
| -rw-r--r-- | meta-oe/recipes-extended/libreport/libreport_2.9.2.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb b/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb index 2fdfd7d725..525437bdb6 100644 --- a/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb +++ b/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb | |||
| @@ -26,7 +26,7 @@ REQUIRED_DISTRO_FEATURES = "systemd" | |||
| 26 | 26 | ||
| 27 | inherit gettext autotools python3native pkgconfig | 27 | inherit gettext autotools python3native pkgconfig |
| 28 | 28 | ||
| 29 | RDEPENDS_${PN}-python3 += "${PN}" | 29 | RDEPENDS_python3-libreport += "${PN}" |
| 30 | 30 | ||
| 31 | do_patch[prefuncs] += "do_gen_version" | 31 | do_patch[prefuncs] += "do_gen_version" |
| 32 | do_gen_version() { | 32 | do_gen_version() { |
| @@ -34,9 +34,9 @@ do_gen_version() { | |||
| 34 | ./gen-version | 34 | ./gen-version |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | PACKAGES += "python3-${PN}" | 37 | PACKAGES += "python3-libreport" |
| 38 | 38 | ||
| 39 | FILES_${PN} += "${datadir}/*" | 39 | FILES_${PN} += "${datadir}/*" |
| 40 | FILES_${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*/.debug" | 40 | FILES_${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*/.debug" |
| 41 | FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/*" | 41 | FILES_python3-libreport = "${PYTHON_SITEPACKAGES_DIR}/*" |
| 42 | 42 | ||
