summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-02-14 09:21:07 +0100
committerKhem Raj <raj.khem@gmail.com>2025-02-14 20:27:17 -0800
commit13fcedfc9277fdcdd4503be2911e39168aff7411 (patch)
tree2017e255ae26aecaa319c864c3434a286bc5300e
parentaef15896ff6476e5d9bb68e8fc655dcbffae21ba (diff)
downloadmeta-openembedded-13fcedfc9277fdcdd4503be2911e39168aff7411.tar.gz
ltrace: fix unwind PACKAGECONFIG
In case unwind PACKAGECONFIG is enabled, do_configure task fails with the following error message: | configure: error: Cannot enable both --with-libunwind and --with-elfutils To avoid this error, disable elfutils with this PACKAGECONFIG. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/ltrace/ltrace_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/ltrace/ltrace_git.bb b/meta-oe/recipes-devtools/ltrace/ltrace_git.bb
index a3ddf2a76b..58cfcb2f06 100644
--- a/meta-oe/recipes-devtools/ltrace/ltrace_git.bb
+++ b/meta-oe/recipes-devtools/ltrace/ltrace_git.bb
@@ -36,7 +36,7 @@ S = "${WORKDIR}/git"
36inherit autotools 36inherit autotools
37 37
38PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}" 38PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}"
39PACKAGECONFIG[unwind] = "--with-libunwind,--without-libunwind,libunwind" 39PACKAGECONFIG[unwind] = "--with-libunwind --without-elfutils,--without-libunwind,libunwind"
40PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,libselinux" 40PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,libselinux"
41 41
42COMPATIBLE_HOST:riscv64 = "null" 42COMPATIBLE_HOST:riscv64 = "null"