Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/
Date: Sun, 16 Jan 2022 17:04:14
Message-Id: 1642352646.88bf48e60a417c3588770b243d445b3712ca53d7.floppym@gentoo
1 commit: 88bf48e60a417c3588770b243d445b3712ca53d7
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 16 16:59:51 2022 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 16 17:04:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88bf48e6
7
8 net-misc/wget: simplify configure hack
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 net-misc/wget/wget-1.21.2.ebuild | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/net-misc/wget/wget-1.21.2.ebuild b/net-misc/wget/wget-1.21.2.ebuild
16 index 5188493fdfcb..5ccba5ae93b2 100644
17 --- a/net-misc/wget/wget-1.21.2.ebuild
18 +++ b/net-misc/wget/wget-1.21.2.ebuild
19 @@ -84,6 +84,7 @@ src_configure() {
20 # Further, libunistring is only needed w/older libidn2 installs,
21 # and since we force the latest, we can force off libunistring. #612498
22 local myeconfargs=(
23 + ac_cv_libunistring=no
24 --disable-assert
25 --disable-pcre
26 --disable-rpath
27 @@ -104,6 +105,5 @@ src_configure() {
28 $(use_with uuid libuuid)
29 $(use_with zlib)
30 )
31 - ac_cv_libunistring=no \
32 econf "${myeconfargs[@]}"
33 }