On Wed, Sep 16, 2026, at 12:31 PM, Alastair McKinstry wrote:
> Building a package (eg squid 7.6; ) which was created with libtool 2.6.2
> automake / aclocal 1.18, in an environment where automake is upgraded
> to 1.19 breaks with:
>
> ```
>
> CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash
> '/build/reproducible-path/squid-7.6/cfgaux/missing' aclocal-1.18 -I m4
> /build/reproducible-path/squid-7.6/cfgaux/missing: line 85:
> aclocal-1.18: command not found
> WARNING: 'aclocal-1.18' is missing on your system.
> You should only need it if you modified 'acinclude.m4' or
> 'configure.ac' or m4 files included by 'configure.ac'.
Thanks, this is helpful. I think I know *what* is happening now, although not
why. Does it work around the problem if you run the failing 'make' or
'configure' command with 'ACLOCAL=aclocal' appended to the command line? If
that doesn't work, try "ACLOCAL=$(which aclocal)", with the double quotes (but
not the trailing comma).
zw