commit: 8d58c40d71676b3e9497d32a01c43eb7ce9c523a Author: Matija Skala <mskala <AT> gmx <DOT> com> AuthorDate: Sun Jan 4 18:49:04 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jan 5 03:30:16 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d58c40d
sys-libs/zlib: configure script doesn't recognize lowercase gnu Signed-off-by: Matija Skala <mskala <AT> gmx.com> Part-of: https://github.com/gentoo/gentoo/pull/45250 Closes: https://github.com/gentoo/gentoo/pull/45250 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-libs/zlib/zlib-1.3.1-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-libs/zlib/zlib-1.3.1-r1.ebuild b/sys-libs/zlib/zlib-1.3.1-r1.ebuild index cb6eb7ac7281..07d24102c367 100644 --- a/sys-libs/zlib/zlib-1.3.1-r1.ebuild +++ b/sys-libs/zlib/zlib-1.3.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -88,6 +88,11 @@ multilib_src_configure() { # bug #347167 local uname=$("${BROOT}"/usr/share/gnuconfig/config.sub "${CHOST}" | cut -d- -f3) + # for GNU Hurd + if [[ ${uname} == gnu ]] ; then + uname=GNU + fi + local myconf=( --shared --prefix="${EPREFIX}/usr"
