Message ID | 20250214083624.1169991-1-skandigraun@gmail.com |
---|---|
State | Accepted |
Headers | show |
Series | [meta-oe] pahole: fix python3 PACKAGECONFIG | expand |
diff --git a/meta-oe/recipes-devtools/pahole/pahole_1.28.bb b/meta-oe/recipes-devtools/pahole/pahole_1.28.bb index ea2d0bab0d..83f4bbc7db 100644 --- a/meta-oe/recipes-devtools/pahole/pahole_1.28.bb +++ b/meta-oe/recipes-devtools/pahole/pahole_1.28.bb @@ -17,7 +17,7 @@ S = "${WORKDIR}/git" inherit cmake pkgconfig -PACKAGECONFIG[python3] = ",,python3-core,python3-core" +PACKAGECONFIG[python3] = ",,python3,python3-core" EXTRA_OECMAKE = "-D__LIB=${@os.path.relpath(d.getVar('libdir'), d.getVar('prefix') + '/')} -DCMAKE_BUILD_TYPE=Release -DLIBBPF_EMBEDDED=OFF"
As a build time dependency, python3 provides python3-core - set the PACKAGECONFIG accordingly to avoid build failure. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> --- meta-oe/recipes-devtools/pahole/pahole_1.28.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)