From a2e843d56a93928dfd43586eac7df0ee42d63ca0 Mon Sep 17 00:00:00 2001 From: orbea Date: Fri, 23 May 2025 20:23:30 -0700 Subject: [PATCH] net-proxy/squid: use AT_NO_RECURSIVE With slibtool and sltdl eautoreconf fails because the default aclocal.m4 contains references to the vendored libltdl. This is because upstream generates the sources with libltdl included in AC_CONFIG_SUBDIRS, but then comments the line in configure.ac for release. Closes: https://bugs.gentoo.org/956509 Closes: https://github.com/gentoo/gentoo/pull/42236 Signed-off-by: orbea Signed-off-by: Michael Orlitzky --- net-proxy/squid/squid-6.14.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-proxy/squid/squid-6.14.ebuild b/net-proxy/squid/squid-6.14.ebuild index 40dfcf4b727ca..747c55f6c38c1 100644 --- a/net-proxy/squid/squid-6.14.ebuild +++ b/net-proxy/squid/squid-6.14.ebuild @@ -140,7 +140,8 @@ src_prepare() { sed -i -e 's:_LTDL_SETUP:LTDL_INIT([installable]):' \ libltdl/configure.ac || die - eautoreconf + # https://bugs.gentoo.org/956509 + AT_NO_RECURSIVE="yes" eautoreconf } src_configure() {