summaryrefslogtreecommitdiff
path: root/dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild
diff options
context:
space:
mode:
authorHendrik Klug <hendrik.klug@gmail.com>2025-09-19 19:44:26 +0200
committerSam James <sam@gentoo.org>2025-09-19 18:58:30 +0100
commit210f53fc147a7a9cf90e79891e426766c0a659e9 (patch)
tree64280a312bdfef72381e62893cc6aed0b6d9e123 /dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild
parentdfe93c7636d8191ee7e74f9f447c589b9be889f7 (diff)
downloadgentoo-210f53fc147a7a9cf90e79891e426766c0a659e9.tar.gz
gentoo-210f53fc147a7a9cf90e79891e426766c0a659e9.tar.bz2
gentoo-210f53fc147a7a9cf90e79891e426766c0a659e9.zip
dev-lang/rust-bin: fix patchelf for prefix
Was already partly fixed in d9b69b495e07f21b8a49f38f87fed5babd3a9476 [sam: Add bug tag. I was going to revbump for this given rust-bin takes no time at all to install and the failure mode is non-obvious here, but we use the revision for the alt arches in SRC_URI... :/] Bug: https://bugs.gentoo.org/955343 Signed-off-by: Hendrik Klug <hendrik.klug@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43851 Closes: https://github.com/gentoo/gentoo/pull/43851 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild')
-rw-r--r--dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild b/dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild
index 422a3a67727f..a210bc4536ee 100644
--- a/dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.86.0-r1.ebuild
@@ -205,8 +205,8 @@ rust_native_abi_install() {
if use prefix; then
local interpreter=$(patchelf --print-interpreter "${EPREFIX}"/bin/bash)
- ebegin "Changing interpreter to ${interpreter} for Gentoo prefix at ${ED}/opt/${SLOT}/bin"
- find "${ED}/opt/${SLOT}/bin" -type f -print0 | \
+ ebegin "Changing interpreter to ${interpreter} for Gentoo prefix at ${ED}/opt/rust-bin-${SLOT}/bin"
+ find "${ED}/opt/rust-bin-${SLOT}/bin" -type f -print0 | \
while IFS= read -r -d '' filename; do
patchelf_for_bin ${filename} ${interpreter} \; || die
done