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 3729A1382C5 for ; Fri, 27 Apr 2018 16:53:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57839E0876; Fri, 27 Apr 2018 16:53:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3411BE0876 for ; Fri, 27 Apr 2018 16:53:39 +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 D96F6335C72 for ; Fri, 27 Apr 2018 16:53:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EAC0272 for ; Fri, 27 Apr 2018 16:53:35 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1524847816.fbed82e27825480ab0c3b75d18042e9829bb359f.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgcrypt/libgcrypt-1.8.2-r2.ebuild X-VCS-Directories: dev-libs/libgcrypt/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: fbed82e27825480ab0c3b75d18042e9829bb359f X-VCS-Branch: master Date: Fri, 27 Apr 2018 16:53:35 +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-Archives-Salt: 8cf0992b-1046-4d47-bb59-6ffca7505d00 X-Archives-Hash: 21ca1e091cf8940a053d63333ffebeb4 commit: fbed82e27825480ab0c3b75d18042e9829bb359f Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Apr 27 16:50:16 2018 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Fri Apr 27 16:50:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbed82e2 dev-libs/libgcrypt: fix cross compile with libgpg-error Closes: https://bugs.gentoo.org/show_bug.cgi?id=653930 Thanks-To: Joe Harvell dev-libs/libgcrypt/libgcrypt-1.8.2-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.2-r2.ebuild b/dev-libs/libgcrypt/libgcrypt-1.8.2-r2.ebuild index 5eaff80fbe2..038308e1dc4 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.8.2-r2.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.8.2-r2.ebuild @@ -54,7 +54,7 @@ multilib_src_configure() { $([[ ${CHOST} == *86*-darwin* ]] && echo "--disable-asm") $([[ ${CHOST} == sparcv9-*-solaris* ]] && echo "--disable-asm") - GPG_ERROR_CONFIG="${EPREFIX}/usr/bin/${CHOST}-gpg-error-config" + GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" }