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 F237A1382C5 for ; Mon, 25 Jan 2021 13:34:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA992E09ED; Mon, 25 Jan 2021 13:34:23 +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 8ECAEE09ED for ; Mon, 25 Jan 2021 13:34:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0B6B6340F26 for ; Mon, 25 Jan 2021 13:34:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49DEB2C5 for ; Mon, 25 Jan 2021 13:34:20 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1611581658.26e6daed9772c4eec8aabe5ffba0588a0d08fe40.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pinentry/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/pinentry/pinentry-1.1.0-r3.ebuild X-VCS-Directories: app-crypt/pinentry/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 26e6daed9772c4eec8aabe5ffba0588a0d08fe40 X-VCS-Branch: master Date: Mon, 25 Jan 2021 13:34:20 +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: f9d99882-4cdb-4084-b973-14953c597b43 X-Archives-Hash: ffd6f20ed25a9c0943915b7c05d4dc2f commit: 26e6daed9772c4eec8aabe5ffba0588a0d08fe40 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jan 25 13:33:25 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jan 25 13:34:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e6daed app-crypt/pinentry: use ESYSROOT properly Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> app-crypt/pinentry/pinentry-1.1.0-r3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-crypt/pinentry/pinentry-1.1.0-r3.ebuild b/app-crypt/pinentry/pinentry-1.1.0-r3.ebuild index b1f94a63c96..a86c83d4d9f 100644 --- a/app-crypt/pinentry/pinentry-1.1.0-r3.ebuild +++ b/app-crypt/pinentry/pinentry-1.1.0-r3.ebuild @@ -67,10 +67,10 @@ src_configure() { $(use_enable qt5 pinentry-qt) \ $(use_with caps libcap) \ --enable-pinentry-tty \ - FLTK_CONFIG="${EROOT}/usr/bin/fltk-config" \ + FLTK_CONFIG="${ESYSROOT}/usr/bin/fltk-config" \ MOC="$(qt5_get_bindir)"/moc \ - GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" \ - LIBASSUAN_CONFIG="${EROOT}/usr/bin/libassuan-config" \ + GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config" \ + LIBASSUAN_CONFIG="${ESYSROOT}/usr/bin/libassuan-config" \ $("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g') }