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-devel/clang/
Date: Sat, 07 Apr 2018 21:29:57
Message-Id: 1523136588.132e9a33cfbdaf22c518f8c0a231b3599b2c6ad2.mgorny@gentoo
1 commit: 132e9a33cfbdaf22c518f8c0a231b3599b2c6ad2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 7 09:05:44 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 7 21:29:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132e9a33
7
8 sys-devel/clang: Include LLVMTestingSupport lib in -9999 checkout
9
10 Include the lib/Testing/Support directory in LLVM checkout since
11 the clangd tests (part of clang-tools-extra) require that library now.
12 The code still needs a fix upstream to actually build the library.
13
14 sys-devel/clang/clang-9999.ebuild | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/sys-devel/clang/clang-9999.ebuild b/sys-devel/clang/clang-9999.ebuild
18 index d769bda1d03..8bc9b08cc45 100644
19 --- a/sys-devel/clang/clang-9999.ebuild
20 +++ b/sys-devel/clang/clang-9999.ebuild
21 @@ -99,7 +99,8 @@ src_unpack() {
22 "${S}"/tools/extra
23 if use test; then
24 git-r3_checkout https://llvm.org/git/llvm.git \
25 - "${WORKDIR}"/llvm '' utils/{lit,llvm-lit,unittest}
26 + "${WORKDIR}"/llvm '' \
27 + lib/Testing/Support utils/{lit,llvm-lit,unittest}
28 fi
29 git-r3_checkout "${EGIT_REPO_URI}" "${S}"
30 }