rust.eclass: add missing / in get_rust_path for binary builds.

Signed-off-by: Matt Jolly <kangie@gentoo.org>
This commit is contained in:
Matt Jolly
2024-11-09 17:30:21 +10:00
parent 60aa21be04
commit 18209a19fe

View File

@@ -390,7 +390,7 @@ get_rust_path() {
if [[ "${rust_type}" == "source" ]]; then
echo "${prefix}/usr/lib/rust/${slot}/"
else
echo "${prefix}opt/rust-bin-${slot}/"
echo "${prefix}/opt/rust-bin-${slot}/"
fi
}