diff options
author | Jan Kundrát <jkt@gentoo.org> | 2017-07-05 01:21:41 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-07-09 21:11:51 +0200 |
commit | 8e0899e224a5341f266d2a3df0ec50a58ac15670 (patch) | |
tree | 96fc56863a96844f5c27a698668e219c1fb5d087 /sci-geosciences/gpsbabel | |
parent | net-misc/sks: backport a few additional fixes from upstream (diff) | |
download | gentoo-8e0899e224a5341f266d2a3df0ec50a58ac15670.tar.gz gentoo-8e0899e224a5341f266d2a3df0ec50a58ac15670.tar.bz2 gentoo-8e0899e224a5341f266d2a3df0ec50a58ac15670.zip |
sci-geosciences/gpsbabel: Fix Qt5's lrelease
My `lrelease` in the default $PATH is a wrapper provided by qtchooser.
It fails when invoked directly.
The ebuild was already half-correct because it used a full path to Qt5's
lrelease when configuring the build :).
Closes: https://github.com/gentoo/gentoo/pull/5043
Diffstat (limited to 'sci-geosciences/gpsbabel')
-rw-r--r-- | sci-geosciences/gpsbabel/gpsbabel-1.5.4-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-geosciences/gpsbabel/gpsbabel-1.5.4-r1.ebuild b/sci-geosciences/gpsbabel/gpsbabel-1.5.4-r1.ebuild index 2b4af46ab15c..23dd56b2ebfc 100644 --- a/sci-geosciences/gpsbabel/gpsbabel-1.5.4-r1.ebuild +++ b/sci-geosciences/gpsbabel/gpsbabel-1.5.4-r1.ebuild @@ -79,7 +79,7 @@ src_configure() { if use gui; then pushd "${S}/gui" > /dev/null || die - lrelease *.ts || die + $(qt5_get_bindir)/lrelease *.ts || die eqmake5 popd > /dev/null fi |