From 43c15cb26af8df9537cc7f9051e0d4ab26f33514 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 11 Sep 2025 10:50:42 +0100 Subject: [PATCH] cargo.eclass: fix RUST_MIN_VER typo in error Prompted by 986f9e9faf926fd9f882fe4636889434023e6e3c. Bug: https://bugs.gentoo.org/961500 Signed-off-by: Sam James --- 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