commit: 43c15cb26af8df9537cc7f9051e0d4ab26f33514 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Sep 11 09:50:42 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Sep 11 09:51:13 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c15cb2
cargo.eclass: fix RUST_MIN_VER typo in error Prompted by 986f9e9faf926fd9f882fe4636889434023e6e3c. Bug: https://bugs.gentoo.org/961500 Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/cargo.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 247d1bf535b9..5c2b89b6a718 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -43,7 +43,7 @@ case ${EAPI} in # than the oldest in-tree in future. if [[ -z ${CARGO_BOOTSTRAP} ]]; then if ver_test "${RUST_MIN_VER}" -lt "${_CARGO_ECLASS_RUST_MIN_VER}"; then - die "RUST_MIN_VERSION must be at least ${_CARGO_ECLASS_RUST_MIN_VER}" + die "RUST_MIN_VER must be at least ${_CARGO_ECLASS_RUST_MIN_VER}" fi fi else
