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 586A0139694 for ; Sun, 12 Feb 2017 20:44:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A802E0CBF; Sun, 12 Feb 2017 20:44:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BDF5E0CBF for ; Sun, 12 Feb 2017 20:44:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FBA2340FC8 for ; Sun, 12 Feb 2017 20:44:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D0E04597 for ; Sun, 12 Feb 2017 20:44:25 +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: <1486932259.9db44c6373a17ed171b71a9307f9647fb7e05970.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gnutls/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gnutls/gnutls-3.5.9.ebuild X-VCS-Directories: net-libs/gnutls/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 9db44c6373a17ed171b71a9307f9647fb7e05970 X-VCS-Branch: master Date: Sun, 12 Feb 2017 20:44:25 +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: f68c6d21-52b1-4a33-9365-2d28a11e9594 X-Archives-Hash: 403a389567480065c30a62bd16586ea0 commit: 9db44c6373a17ed171b71a9307f9647fb7e05970 Author: Alon Bar-Lev gentoo org> AuthorDate: Sun Feb 12 20:44:05 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sun Feb 12 20:44:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db44c63 net-libs/gnutls: tiny cleanup Package-Manager: portage-2.3.3 net-libs/gnutls/gnutls-3.5.9.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/gnutls/gnutls-3.5.9.ebuild b/net-libs/gnutls/gnutls-3.5.9.ebuild index a711c9b2f1..e5a9708b99 100644 --- a/net-libs/gnutls/gnutls-3.5.9.ebuild +++ b/net-libs/gnutls/gnutls-3.5.9.ebuild @@ -104,7 +104,7 @@ multilib_src_configure() { # remove magic of library detection # bug#438222 - libconf=($("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g')) + local libconf=($("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g')) # TPM needs to be tested before being enabled # hardware-accell is disabled on OSX because the asm files force @@ -131,7 +131,7 @@ multilib_src_configure() { $(use_with zlib) \ $(use_with idn) \ --without-tpm \ - --with-unbound-root-key-file=/etc/dnssec/root-anchors.txt \ + --with-unbound-root-key-file="${EROOT}etc/dnssec/root-anchors.txt" \ "${libconf[@]}" \ $([[ ${CHOST} == *-darwin* ]] && echo --disable-hardware-acceleration) }