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: Sun, 29 Nov 2020 10:34:19
Message-Id: 1606646051.a1ca70ca964ea2d728d209075f8975a1c136b209.mgorny@gentoo
1 commit: a1ca70ca964ea2d728d209075f8975a1c136b209
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 10:32:55 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 10:34:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1ca70ca
7
8 sys-devel/clang: Fix missing conditions around deps
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/clang/clang-11.0.0.9999.ebuild | 2 +-
13 sys-devel/clang/clang-12.0.0.9999.ebuild | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/sys-devel/clang/clang-11.0.0.9999.ebuild b/sys-devel/clang/clang-11.0.0.9999.ebuild
17 index 7be842f5ff2..1e9b8aabd11 100644
18 --- a/sys-devel/clang/clang-11.0.0.9999.ebuild
19 +++ b/sys-devel/clang/clang-11.0.0.9999.ebuild
20 @@ -36,7 +36,7 @@ RDEPEND="
21 ${PYTHON_DEPS}"
22 for x in "${ALL_LLVM_TARGETS[@]}"; do
23 RDEPEND+="
24 - ~sys-devel/llvm-${PV}:${SLOT}[${x}]"
25 + ${x}? ( ~sys-devel/llvm-${PV}:${SLOT}[${x}] )"
26 done
27 unset x
28
29
30 diff --git a/sys-devel/clang/clang-12.0.0.9999.ebuild b/sys-devel/clang/clang-12.0.0.9999.ebuild
31 index 83d795ccdb6..d1d26af0fa7 100644
32 --- a/sys-devel/clang/clang-12.0.0.9999.ebuild
33 +++ b/sys-devel/clang/clang-12.0.0.9999.ebuild
34 @@ -36,7 +36,7 @@ RDEPEND="
35 ${PYTHON_DEPS}"
36 for x in "${ALL_LLVM_TARGETS[@]}"; do
37 RDEPEND+="
38 - ~sys-devel/llvm-${PV}:${SLOT}[${x}]"
39 + ${x}? ( ~sys-devel/llvm-${PV}:${SLOT}[${x}] )"
40 done
41 unset x