From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CFA471382C5 for ; Sat, 16 Jan 2021 22:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06DCEE0801; Sat, 16 Jan 2021 22:22:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF137E0801 for ; Sat, 16 Jan 2021 22:22:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C654C340F63 for ; Sat, 16 Jan 2021 22:22:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19E434B for ; Sat, 16 Jan 2021 22:22:22 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1610835645.a05ab27e10f4b4decc3fb24b649057e3cd438e7c.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/rbutil/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/rbutil/rbutil-1.4.1.ebuild X-VCS-Directories: app-misc/rbutil/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: a05ab27e10f4b4decc3fb24b649057e3cd438e7c X-VCS-Branch: master Date: Sat, 16 Jan 2021 22:22:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 92f6fd8a-a7e5-4221-b7aa-108c87d9b947 X-Archives-Hash: aade00561bf644c0b64d5615acbf6a87 commit: a05ab27e10f4b4decc3fb24b649057e3cd438e7c Author: James Le Cuirot gentoo org> AuthorDate: Sat Jan 16 22:07:19 2021 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Jan 16 22:20:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05ab27e app-misc/rbutil: Use full qt5_get_bindir() path when calling lrelease Closes: https://bugs.gentoo.org/765694 Package-Manager: Portage-3.0.12, Repoman-3.0.1 Signed-off-by: James Le Cuirot gentoo.org> app-misc/rbutil/rbutil-1.4.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-misc/rbutil/rbutil-1.4.1.ebuild b/app-misc/rbutil/rbutil-1.4.1.ebuild index 2478bc80799..3ba0000d120 100644 --- a/app-misc/rbutil/rbutil-1.4.1.ebuild +++ b/app-misc/rbutil/rbutil-1.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -41,7 +41,7 @@ src_prepare() { src_configure() { # Generate binary translations. - lrelease ${PN}qt.pro || die + "$(qt5_get_bindir)"/lrelease ${PN}qt.pro || die # noccache is required to call the correct compiler. eqmake5 CONFIG+="noccache $(use debug && echo dbg)"