diff options
author | Viorel Munteanu <ceamac@gentoo.org> | 2022-11-06 13:46:55 +0200 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2022-11-07 07:02:44 +0200 |
commit | 6fc2818dd632d224e1575a60bf57f1b7d96cec6f (patch) | |
tree | 7bfddb71fc96f750e4f5ab2e71b42f50c331c90f /net-im | |
parent | dev-go/act: no longer use go-module (diff) | |
download | gentoo-6fc2818dd632d224e1575a60bf57f1b7d96cec6f.tar.gz gentoo-6fc2818dd632d224e1575a60bf57f1b7d96cec6f.tar.bz2 gentoo-6fc2818dd632d224e1575a60bf57f1b7d96cec6f.zip |
net-im/mattermost-desktop-bin: fix python path
Closes: https://bugs.gentoo.org/880031
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/28158
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.0-r1.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.0-r1.ebuild b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.0-r1.ebuild index 0c0557e26809..a612c3199f14 100644 --- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.0-r1.ebuild +++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.0-r1.ebuild @@ -79,7 +79,9 @@ src_install() { doexe *.so *.so.* "${MY_PN}" dosym -r "/opt/${MY_PN}/${MY_PN}" "/usr/bin/${MY_PN}" - find "/opt/${MY_PN}/resources" -type l -name python3 -exec dosym -r "${PYTHON}" "{}" \; || die + pushd "${ED}" || die + find "opt/${MY_PN}/resources" -type l -name python3 -exec dosym -r "${PYTHON}" "{}" \; || die + popd || die make_desktop_entry "${MY_PN}" Mattermost "${MY_PN}" |