summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiu Yiding <liuyd.fnst@fujitsu.com>2025-05-21 11:40:03 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-05-22 14:36:49 +0100
commit32b3f35bf68baf5c603e38e8b18b902a1af281df (patch)
treef085160b7f8e1e20b4b9f11399d89e99e44245b7
parent14dc339f383549d4bd0fd521a8d2000a9dce2ced (diff)
downloadpoky-32b3f35bf68baf5c603e38e8b18b902a1af281df.tar.gz
libunwind: disable installation of tests dir
fix the issue that: | Error: Transaction test error: | file /usr/libexec/libunwind/check-namespace.sh conflicts between attempted installs of libunwind-1.8.1-r0.core2_64 and lib32-libunwind-1.8.1-r0.core2_32 | file /usr/libexec/libunwind/test-runner conflicts between attempted installs of libunwind-1.8.1-r0.core2_64 and lib32-libunwind-1.8.1-r0.core2_32 By default, test suite from srcdir/tests/* will be installed to /usr/libexec/libunwind, here pass --disable-tests to not install test suite. Test suite can be added to libunwind-ptest in the future if needed (From OE-Core rev: 9d9c36cd5fc59e88bcd8a08ba70ced996c7d74be) Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-support/libunwind/libunwind_1.8.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/libunwind/libunwind_1.8.1.bb b/meta/recipes-support/libunwind/libunwind_1.8.1.bb
index 68d7a98ee4..10714ea247 100644
--- a/meta/recipes-support/libunwind/libunwind_1.8.1.bb
+++ b/meta/recipes-support/libunwind/libunwind_1.8.1.bb
@@ -28,7 +28,7 @@ PACKAGECONFIG[lzma] = "--enable-minidebuginfo,--disable-minidebuginfo,xz"
28PACKAGECONFIG[zlib] = "--enable-zlibdebuginfo,--disable-zlibdebuginfo,zlib" 28PACKAGECONFIG[zlib] = "--enable-zlibdebuginfo,--disable-zlibdebuginfo,zlib"
29PACKAGECONFIG[latexdocs] = "--enable-documentation, --disable-documentation, latex2man-native" 29PACKAGECONFIG[latexdocs] = "--enable-documentation, --disable-documentation, latex2man-native"
30 30
31EXTRA_OECONF = "--enable-static" 31EXTRA_OECONF = "--enable-static --disable-tests"
32 32
33# http://errors.yoctoproject.org/Errors/Details/20487/ 33# http://errors.yoctoproject.org/Errors/Details/20487/
34ARM_INSTRUCTION_SET:armv4 = "arm" 34ARM_INSTRUCTION_SET:armv4 = "arm"