Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gnutls/
Date: Sun, 12 Feb 2017 20:44:30
Message-Id: 1486932259.9db44c6373a17ed171b71a9307f9647fb7e05970.alonbl@gentoo
1 commit: 9db44c6373a17ed171b71a9307f9647fb7e05970
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 20:44:05 2017 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 20:44:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db44c63
7
8 net-libs/gnutls: tiny cleanup
9
10 Package-Manager: portage-2.3.3
11
12 net-libs/gnutls/gnutls-3.5.9.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/net-libs/gnutls/gnutls-3.5.9.ebuild b/net-libs/gnutls/gnutls-3.5.9.ebuild
16 index a711c9b2f1..e5a9708b99 100644
17 --- a/net-libs/gnutls/gnutls-3.5.9.ebuild
18 +++ b/net-libs/gnutls/gnutls-3.5.9.ebuild
19 @@ -104,7 +104,7 @@ multilib_src_configure() {
20
21 # remove magic of library detection
22 # bug#438222
23 - libconf=($("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g'))
24 + local libconf=($("${S}/configure" --help | grep -- '--without-.*-prefix' | sed -e 's/^ *\([^ ]*\) .*/\1/g'))
25
26 # TPM needs to be tested before being enabled
27 # hardware-accell is disabled on OSX because the asm files force
28 @@ -131,7 +131,7 @@ multilib_src_configure() {
29 $(use_with zlib) \
30 $(use_with idn) \
31 --without-tpm \
32 - --with-unbound-root-key-file=/etc/dnssec/root-anchors.txt \
33 + --with-unbound-root-key-file="${EROOT}etc/dnssec/root-anchors.txt" \
34 "${libconf[@]}" \
35 $([[ ${CHOST} == *-darwin* ]] && echo --disable-hardware-acceleration)
36 }