fix(guix-1.5.0): force generic autotools commands instead of version-suffixed aclocal

This commit is contained in:
vxtls 2026-03-07 18:09:59 -05:00
parent c124c08096
commit aea0e5c761

View file

@ -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() {