summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2021-09-17 21:11:40 +0200
committerArmin Kuster <akuster808@gmail.com>2021-10-08 12:40:05 -0700
commit871cc98187aeb2418a2a254a0c642b1f1621cb27 (patch)
tree97c9b0359718ec17722f890b3ee8f30ef8615707
parentf44e1a2b575826e88b8cb2725e54a7c5d29cf94a (diff)
downloadmeta-openembedded-871cc98187aeb2418a2a254a0c642b1f1621cb27.tar.gz
libiio: Make libiio-python3 depend on python3-core
Inheriting setuptools3 incorrectly adds the dependency on python3-core to libiio instead of to libiio-python3 where it belongs. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-support/libiio/libiio_git.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libiio/libiio_git.bb b/meta-oe/recipes-support/libiio/libiio_git.bb
index d7e4cc60a9..cfd9746bdd 100644
--- a/meta-oe/recipes-support/libiio/libiio_git.bb
+++ b/meta-oe/recipes-support/libiio/libiio_git.bb
@@ -37,7 +37,10 @@ PACKAGECONFIG[libiio-python3] = "-DPYTHON_BINDINGS=ON,-DPYTHON_BINDINGS=OFF"
37 37
38PACKAGES =+ "${PN}-iiod ${PN}-tests ${PN}-${PYTHON_PN}" 38PACKAGES =+ "${PN}-iiod ${PN}-tests ${PN}-${PYTHON_PN}"
39 39
40RDEPENDS_${PN}-${PYTHON_PN} = "${PN} ${PYTHON_PN}-ctypes ${PYTHON_PN}-stringold" 40# Inheriting setuptools3 incorrectly adds the dependency on ${PYTHON_PN}-core
41# to ${PN} instead of to ${PN}-${PYTHON_PN} where it belongs.
42RDEPENDS_${PN}_remove = "${PYTHON_PN}-core"
43RDEPENDS_${PN}-${PYTHON_PN} = "${PN} ${PYTHON_PN}-core ${PYTHON_PN}-ctypes ${PYTHON_PN}-stringold"
41 44
42FILES_${PN}-iiod = " \ 45FILES_${PN}-iiod = " \
43 ${sbindir}/iiod \ 46 ${sbindir}/iiod \