From 18209a19fee456d23f6e97182b668fd3bf5c5d1b Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Sat, 9 Nov 2024 17:30:21 +1000 Subject: [PATCH] rust.eclass: add missing `/` in `get_rust_path` for `binary` builds. Signed-off-by: Matt Jolly --- eclass/rust.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/rust.eclass b/eclass/rust.eclass index 12ef4b90a7ac6..e91048a6f193e 100644 --- a/eclass/rust.eclass +++ b/eclass/rust.eclass @@ -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 }