commit: 0fb3a82b51afa552cfc9cf7169e3d865b4f3419b Author: Matt Jolly <kangie <AT> gentoo <DOT> org> AuthorDate: Sun Nov 17 05:23:34 2024 +0000 Commit: Matt Jolly <kangie <AT> gentoo <DOT> org> CommitDate: Sun Nov 17 05:27:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb3a82b
rust.eclass: fix ECLASS_VARIABLE for LLVM/MULTILIB RUST_NEEDS_LLVM and RUST_MULTILIB incorrectly had ECLASS_VARIABLE in lowercase, resulting in these variables not ending up in documentation. Closes: https://bugs.gentoo.org/943559 Signed-off-by: Matt Jolly <kangie <AT> gentoo.org> eclass/rust.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/rust.eclass b/eclass/rust.eclass index f293e96d7ce8..b578f6cf9afa 100644 --- a/eclass/rust.eclass +++ b/eclass/rust.eclass @@ -106,7 +106,7 @@ declare -a -g -r _RUST_SLOTS_ORDERED=( # Lowest Rust slot supported by the package. Needs to be set before # rust_pkg_setup is called. If unset, no lower bound is assumed. -# @eclass-variable: RUST_NEEDS_LLVM +# @ECLASS_VARIABLE: RUST_NEEDS_LLVM # @DEFAULT_UNSET # @DESCRIPTION: # If set to a non-empty value generate a llvm_slot_${llvm_slot}? gated @@ -118,7 +118,7 @@ declare -a -g -r _RUST_SLOTS_ORDERED=( # an invalid combination of RUST and LLVM slots is detected; this probably # means that a LLVM slot in LLVM_COMPAT has had all of its Rust slots filtered. -# @eclass-variable: RUST_MULTILIB +# @ECLASS_VARIABLE: RUST_MULTILIB # @DEFAULT_UNSET # @DESCRIPTION: # If set to a non-empty value insert MULTILIB_USEDEP into the generated
