commit: 140e8d39442dd6cd411f2ec75265d73feae1ba73 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Thu Oct 22 17:39:27 2015 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Thu Oct 22 17:39:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140e8d39
net-p2p/transmission: Refer to lrelease by absolute path Bug: https://bugs.gentoo.org/563500 Package-Manager: portage-2.2.23_p4 net-p2p/transmission/transmission-2.84-r3.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-p2p/transmission/transmission-2.84-r3.ebuild b/net-p2p/transmission/transmission-2.84-r3.ebuild index 4c99f38..3834c7c 100644 --- a/net-p2p/transmission/transmission-2.84-r3.ebuild +++ b/net-p2p/transmission/transmission-2.84-r3.ebuild @@ -102,10 +102,11 @@ src_compile() { emake if use qt4 || use qt5; then - use qt4 && local -x QT_SELECT=4 - use qt5 && local -x QT_SELECT=5 + local qt_bindir + use qt4 && qt_bindir=$(qt4_get_bindir) + use qt5 && qt_bindir=$(qt5_get_bindir) emake -C qt - lrelease qt/translations/*.ts || die + "${qt_bindir}"/lrelease qt/translations/*.ts || die fi }
