From fe09b04b6877c6f9ae355fe1aa7188614a1b5ccd Mon Sep 17 00:00:00 2001 From: Gyorgy Sarvari Date: Fri, 14 Feb 2025 09:43:29 +0100 Subject: [PATCH] pax-utils: fix pyelftools PACKAGECONFIG dependency 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 Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/pax-utils/pax-utils_1.3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"