From 2f085760d80e5162b8fa06922ef0e6f64f991607 Mon Sep 17 00:00:00 2001 From: Aleksandr Vinogradov Date: Sat, 11 Jan 2025 18:33:14 +0700 Subject: [PATCH] fix missing posix message queue support in python3-posix-ipc package --- .../recipes-devtools/python/python3-posix-ipc_1.1.1.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-python/recipes-devtools/python/python3-posix-ipc_1.1.1.bb b/meta-python/recipes-devtools/python/python3-posix-ipc_1.1.1.bb index 7106e9c5ef7..d3635c319ab 100644 --- a/meta-python/recipes-devtools/python/python3-posix-ipc_1.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-posix-ipc_1.1.1.bb @@ -10,3 +10,7 @@ UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" SRC_URI[sha256sum] = "e2456ba0cfb2ee5ba14121450e8d825b3c4a1461fca0761220aab66d4111cbb7" inherit setuptools3 pypi + +# Ensure posix message queue support in python package for prober.py script +DEPENDS += "glibc" +RDEPENDS:${PN} += "glibc"