cargo.eclass: fix RUST_MIN_VER typo in error

Prompted by 986f9e9faf926fd9f882fe4636889434023e6e3c.

Bug: https://bugs.gentoo.org/961500
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James 2025-09-11 10:50:42 +01:00
parent c7ece59226
commit 43c15cb26a
No known key found for this signature in database
GPG Key ID: 738409F520DF9190

View File

@ -43,7 +43,7 @@ case ${EAPI} in
# than the oldest in-tree in future. # than the oldest in-tree in future.
if [[ -z ${CARGO_BOOTSTRAP} ]]; then if [[ -z ${CARGO_BOOTSTRAP} ]]; then
if ver_test "${RUST_MIN_VER}" -lt "${_CARGO_ECLASS_RUST_MIN_VER}"; 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
fi fi
else else