dev-lang/odin: quote LLVM_SLOT with single quotes

LLVM_SLOT inside llvm_gen_dep() must not be expanded beforehand.

Closes: https://bugs.gentoo.org/940461
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2025-02-04 21:25:26 +09:00
parent b85276f844
commit 4c12a993fe
2 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2024 Gentoo Authors
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -26,10 +26,10 @@ SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
$(llvm_gen_dep "
$(llvm_gen_dep '
llvm-core/clang:${LLVM_SLOT}=
llvm-core/llvm:${LLVM_SLOT}=
")
')
"
DEPEND="${RDEPEND}"

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2024 Gentoo Authors
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -26,10 +26,10 @@ SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
$(llvm_gen_dep "
$(llvm_gen_dep '
llvm-core/clang:${LLVM_SLOT}=
llvm-core/llvm:${LLVM_SLOT}=
")
')
"
DEPEND="${RDEPEND}"