diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-02-14 09:21:07 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-02-14 20:27:17 -0800 |
commit | 13fcedfc9277fdcdd4503be2911e39168aff7411 (patch) | |
tree | 2017e255ae26aecaa319c864c3434a286bc5300e | |
parent | aef15896ff6476e5d9bb68e8fc655dcbffae21ba (diff) | |
download | meta-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.bb | 2 |
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" | |||
36 | inherit autotools | 36 | inherit autotools |
37 | 37 | ||
38 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}" | 38 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}" |
39 | PACKAGECONFIG[unwind] = "--with-libunwind,--without-libunwind,libunwind" | 39 | PACKAGECONFIG[unwind] = "--with-libunwind --without-elfutils,--without-libunwind,libunwind" |
40 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,libselinux" | 40 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,libselinux" |
41 | 41 | ||
42 | COMPATIBLE_HOST:riscv64 = "null" | 42 | COMPATIBLE_HOST:riscv64 = "null" |