Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/llvm-libunwind/
Date: Wed, 29 Dec 2021 20:04:21
Message-Id: 1640808250.093b263b263af53d6f426fe979991bbb19edafdc.mgorny@gentoo
1 commit: 093b263b263af53d6f426fe979991bbb19edafdc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 29 19:58:43 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 29 20:04:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=093b263b
7
8 sys-libs/llvm-libunwind: Use LIBUNWIND_INSTALL_HEADERS in 14.x
9
10 Thanks to Arfrever for the suggestion.
11
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild | 8 +-------
15 1 file changed, 1 insertion(+), 7 deletions(-)
16
17 diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild
18 index 3de0ff0f04be..cd73db419d28 100644
19 --- a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild
20 +++ b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild
21 @@ -55,6 +55,7 @@ multilib_src_configure() {
22 -DLLVM_LIBDIR_SUFFIX=${libdir#lib}
23 -DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug)
24 -DLIBUNWIND_ENABLE_STATIC=$(usex static-libs)
25 + -DLIBUNWIND_INSTALL_HEADERS=ON
26 -DLIBUNWIND_TARGET_TRIPLE="${CHOST}"
27 -DLLVM_INCLUDE_TESTS=$(usex test)
28
29 @@ -133,10 +134,3 @@ multilib_src_test() {
30 local -x LIT_PRESERVES_TMP=1
31 cmake_build check-unwind
32 }
33 -
34 -multilib_src_install() {
35 - cmake_src_install
36 -
37 - # install headers like sys-libs/libunwind
38 - doheader "${S}"/include/*.h
39 -}