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 091ED1382C5 for ; Thu, 10 Jun 2021 22:21:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F32FE08D3; Thu, 10 Jun 2021 22:21:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 E8967E08D3 for ; Thu, 10 Jun 2021 22:21:25 +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 C97D533D7E3 for ; Thu, 10 Jun 2021 22:21:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3C36796 for ; Thu, 10 Jun 2021 22:21:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1623363135.f28ff846687fee233d604a3a8a1d0c67bb7c2925.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libksba/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libksba/libksba-1.5.0.ebuild dev-libs/libksba/libksba-1.5.1.ebuild dev-libs/libksba/libksba-1.6.0.ebuild X-VCS-Directories: dev-libs/libksba/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f28ff846687fee233d604a3a8a1d0c67bb7c2925 X-VCS-Branch: master Date: Thu, 10 Jun 2021 22:21: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: beb11605-58bd-4165-82ba-57d0348b2bdd X-Archives-Hash: 7b531e2cb353f36ad66546dcb5739a9c commit: f28ff846687fee233d604a3a8a1d0c67bb7c2925 Author: Sam James gentoo org> AuthorDate: Thu Jun 10 22:12:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 10 22:12:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f28ff846 dev-libs/libksba: fix VariableScope (EROOT) Replacing ${EROOT} with ${ESYSROOT} for now, although there's a case to be made for ${BROOT} -- but at least ESYSROOT is actually defined here. Signed-off-by: Sam James gentoo.org> dev-libs/libksba/libksba-1.5.0.ebuild | 4 ++-- dev-libs/libksba/libksba-1.5.1.ebuild | 4 ++-- dev-libs/libksba/libksba-1.6.0.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-libs/libksba/libksba-1.5.0.ebuild b/dev-libs/libksba/libksba-1.5.0.ebuild index 6b66a7c049f..32f6d92671c 100644 --- a/dev-libs/libksba/libksba-1.5.0.ebuild +++ b/dev-libs/libksba/libksba-1.5.0.ebuild @@ -19,8 +19,8 @@ BDEPEND="sys-devel/bison" src_configure() { local myeconfargs=( $(use_enable static-libs static) - GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" - LIBGCRYPT_CONFIG="${EROOT}/usr/bin/${CHOST}-libgcrypt-config" + GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config" + LIBGCRYPT_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-libgcrypt-config" $("${S}/configure" --help | grep -o -- '--without-.*-prefix') ) econf "${myeconfargs[@]}" diff --git a/dev-libs/libksba/libksba-1.5.1.ebuild b/dev-libs/libksba/libksba-1.5.1.ebuild index 788b2975735..579a792bd5f 100644 --- a/dev-libs/libksba/libksba-1.5.1.ebuild +++ b/dev-libs/libksba/libksba-1.5.1.ebuild @@ -19,8 +19,8 @@ BDEPEND="sys-devel/bison" src_configure() { local myeconfargs=( $(use_enable static-libs static) - GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" - LIBGCRYPT_CONFIG="${EROOT}/usr/bin/${CHOST}-libgcrypt-config" + GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config" + LIBGCRYPT_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-libgcrypt-config" $("${S}/configure" --help | grep -o -- '--without-.*-prefix') ) econf "${myeconfargs[@]}" diff --git a/dev-libs/libksba/libksba-1.6.0.ebuild b/dev-libs/libksba/libksba-1.6.0.ebuild index 788b2975735..579a792bd5f 100644 --- a/dev-libs/libksba/libksba-1.6.0.ebuild +++ b/dev-libs/libksba/libksba-1.6.0.ebuild @@ -19,8 +19,8 @@ BDEPEND="sys-devel/bison" src_configure() { local myeconfargs=( $(use_enable static-libs static) - GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" - LIBGCRYPT_CONFIG="${EROOT}/usr/bin/${CHOST}-libgcrypt-config" + GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config" + LIBGCRYPT_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-libgcrypt-config" $("${S}/configure" --help | grep -o -- '--without-.*-prefix') ) econf "${myeconfargs[@]}"