From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1EB51158042 for ; Sat, 9 Nov 2024 07:31:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 716BDE087B; Sat, 9 Nov 2024 07:31:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 320DDE087B for ; Sat, 9 Nov 2024 07:31:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B98C33BE9F for ; Sat, 9 Nov 2024 07:31:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DA4018DD for ; Sat, 9 Nov 2024 07:31:07 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1731137421.18209a19fee456d23f6e97182b668fd3bf5c5d1b.kangie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/rust.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: 18209a19fee456d23f6e97182b668fd3bf5c5d1b X-VCS-Branch: master Date: Sat, 9 Nov 2024 07:31:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5ace36e8-5854-4e6b-afcf-052cf5ae7657 X-Archives-Hash: f66573c4c1b200f570df5729be06f6bf commit: 18209a19fee456d23f6e97182b668fd3bf5c5d1b Author: Matt Jolly gentoo org> AuthorDate: Sat Nov 9 07:30:21 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Sat Nov 9 07:30:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18209a19 rust.eclass: add missing `/` in `get_rust_path` for `binary` builds. Signed-off-by: Matt Jolly gentoo.org> eclass/rust.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/rust.eclass b/eclass/rust.eclass index 12ef4b90a7ac..e91048a6f193 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 }