commit: 04c55ce73d0d42dc63399491f939ced1b873832a Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> AuthorDate: Thu Oct 20 18:27:02 2022 +0000 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> CommitDate: Thu Oct 20 18:27:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04c55ce7
dev-lang/rust-bin: || die if symlink target not found Bug: https://bugs.gentoo.org/876979 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org> dev-lang/rust-bin/rust-bin-1.64.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/rust-bin/rust-bin-1.64.0-r1.ebuild b/dev-lang/rust-bin/rust-bin-1.64.0-r1.ebuild index e8b145d2a0de..fe1802438234 100644 --- a/dev-lang/rust-bin/rust-bin-1.64.0-r1.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.64.0-r1.ebuild @@ -143,7 +143,7 @@ multilib_src_install() { # we need realpath on /usr/bin/* symlink return version-appended binary path. # so /usr/bin/rustc should point to /opt/rust-bin-<ver>/bin/rustc-<ver> local ver_i="${i}-bin-${PV}" - ln -v "${ED}/opt/${P}/bin/${i}" "${ED}/opt/${P}/bin/${ver_i}" + ln -v "${ED}/opt/${P}/bin/${i}" "${ED}/opt/${P}/bin/${ver_i}" || die dosym "../../opt/${P}/bin/${ver_i}" "/usr/bin/${ver_i}" done
