diff mbox series

[meta-oe] pax-utils: fix pyelftools PACKAGECONFIG dependency

Message ID 20250214084329.1203473-1-skandigraun@gmail.com
State Accepted
Headers show
Series [meta-oe] pax-utils: fix pyelftools PACKAGECONFIG dependency | expand

Commit Message

Gyorgy Sarvari Feb. 14, 2025, 8:43 a.m. UTC
The correct dependency name for pyelftools is "python3-pyelftools".
Set the dependency name accordingly to avoid build failure with
this PACKAGECONFIG.

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
---
 meta-oe/recipes-devtools/pax-utils/pax-utils_1.3.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-oe/recipes-devtools/pax-utils/pax-utils_1.3.3.bb b/meta-oe/recipes-devtools/pax-utils/pax-utils_1.3.3.bb
index d512c85704..4e80ca87ee 100644
--- a/meta-oe/recipes-devtools/pax-utils/pax-utils_1.3.3.bb
+++ b/meta-oe/recipes-devtools/pax-utils/pax-utils_1.3.3.bb
@@ -30,6 +30,6 @@  PACKAGECONFIG ??= ""
 
 PACKAGECONFIG[libcap] = "--with-caps, --without-caps, libcap"
 PACKAGECONFIG[libseccomp] = "--with-seccomp, --without-seccomp, libseccomp"
-PACKAGECONFIG[pyelftools] = "--with-python, --without-python,, pyelftools"
+PACKAGECONFIG[pyelftools] = "--with-python, --without-python,, python3-pyelftools"
 
 EXTRA_OECONF += "--enable-largefile"