From aea0e5c761ab281c32feb39a0f8c608f9eb7f941 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Sat, 7 Mar 2026 18:09:59 -0500 Subject: [PATCH] fix(guix-1.5.0): force generic autotools commands instead of version-suffixed aclocal --- steps-guix/guix-1.5.0/pass1.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/steps-guix/guix-1.5.0/pass1.sh b/steps-guix/guix-1.5.0/pass1.sh index cf4a423a..b6c80030 100755 --- a/steps-guix/guix-1.5.0/pass1.sh +++ b/steps-guix/guix-1.5.0/pass1.sh @@ -192,7 +192,14 @@ src_configure() { } src_compile() { - default_src_compile + # Build environment may provide aclocal/automake without a matching + # version-suffixed binary (e.g. aclocal-1.17). Force generic tool names. + make "${MAKEJOBS}" -f Makefile PREFIX="${PREFIX}" \ + ACLOCAL=aclocal \ + AUTOCONF=autoconf \ + AUTOHEADER=autoheader \ + AUTOMAKE=automake \ + AUTORECONF=autoreconf } src_install() {