Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-validator/
Date: Tue, 28 Jan 2020 12:34:12
Message-Id: 1580214835.129b00017819015cb54420d664659498d950a6c2.juippis@gentoo
1 commit: 129b00017819015cb54420d664659498d950a6c2
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 12:30:36 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 12:33:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=129b0001
7
8 net-dns/dnssec-validator: fix UnnecessarySlashStrip CI issue
9
10 - non-maintainer commit, Conrad is on devaway.
11
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild | 8 ++++----
15 1 file changed, 4 insertions(+), 4 deletions(-)
16
17 diff --git a/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild b/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild
18 index dd51bea55f6..aa9cff550d4 100644
19 --- a/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild
20 +++ b/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -42,9 +42,9 @@ src_configure() {
28 $(use_with nsec3)
29 $(use_enable static-libs static)
30 $(use_with threads)
31 - --with-dnsval-conf="${EPREFIX%/}/etc/dnssec-tools/dnsval.conf"
32 - --with-resolv-conf="${EPREFIX%/}/etc/dnssec-tools/resolv.conf"
33 - --with-root-hints="${EPREFIX%/}/etc/dnssec-tools/root.hints"
34 + --with-dnsval-conf="${EPREFIX}/etc/dnssec-tools/dnsval.conf"
35 + --with-resolv-conf="${EPREFIX}/etc/dnssec-tools/resolv.conf"
36 + --with-root-hints="${EPREFIX}/etc/dnssec-tools/root.hints"
37 )
38
39 econf "${myeconfargs[@]}"