summaryrefslogtreecommitdiff
path: root/dev-lang/rust/rust-9999.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-07-19 11:02:07 +0100
committerSam James <sam@gentoo.org>2025-07-19 12:35:13 +0100
commit19d04b7dc91df38eff441e255bc1d6d4499531e2 (patch)
tree9049be2489f430b5e013fce7b1ffe1b41888f045 /dev-lang/rust/rust-9999.ebuild
parentad5b4bbb8c905fc811d3a2c2e7c9c9f5f3937829 (diff)
downloadgentoo-19d04b7dc91df38eff441e255bc1d6d4499531e2.tar.gz
gentoo-19d04b7dc91df38eff441e255bc1d6d4499531e2.tar.bz2
gentoo-19d04b7dc91df38eff441e255bc1d6d4499531e2.zip
dev-lang/rust: match LLVM_TARGETS
We already depend on the right LLVM targets but without =, but we need that as it's automagic otherwise. I'm not completely convinced we need it here, but my aim is to avoid breaking things and then improve more later. Bug: https://bugs.gentoo.org/735154 Bug: https://bugs.gentoo.org/767700 Bug: https://bugs.gentoo.org/768267 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/rust/rust-9999.ebuild')
-rw-r--r--dev-lang/rust/rust-9999.ebuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-lang/rust/rust-9999.ebuild b/dev-lang/rust/rust-9999.ebuild
index acd1b3fdb8d8..1bb3c5f4711b 100644
--- a/dev-lang/rust/rust-9999.ebuild
+++ b/dev-lang/rust/rust-9999.ebuild
@@ -75,7 +75,7 @@ fi
LLVM_DEPEND=()
# splitting usedeps needed to avoid CI/pkgcheck's UncheckableDep limitation
for _x in "${ALL_LLVM_TARGETS[@]}"; do
- LLVM_DEPEND+=( " ${_x}? ( $(llvm_gen_dep "llvm-core/llvm:\${LLVM_SLOT}[${_x}]") )" )
+ LLVM_DEPEND+=( " ${_x}? ( $(llvm_gen_dep "llvm-core/llvm:\${LLVM_SLOT}[${_x}=]") )" )
if [[ -v ALL_RUST_EXPERIMENTAL_TARGETS["${_x}"] ]] ; then
ALL_RUST_EXPERIMENTAL_TARGETS["${_x}"]=1
fi