Raphaël Poss writes:
> This does not:
> ---8<---
> AC_INIT(tools, 0.1)
> AM_INIT_AUTOMAKE
> AC_OUTPUT
> ---8<---
AM_INIT_AUTOMAKE calls AC_PROG_INSTALL which needs install-sh.
> This does not, either:
> ---8<---
> AC_INIT(tools, 0.1)
> AC_CANONICAL_HOST
> AC_OUTPUT
> ---8<---
AC_CANONICAL_HOST
Raphaël Poss <[EMAIL PROTECTED]> writes:
> Here is a minimal configure.ac:
[...]
>
> autoreconf -v -f -i => ok
> ./configure =>
> configure: error: cannot find install-sh or install.sh in . ./.
Versions: ac 2.57, am 1.7.2
This works:
---8<---
AC_INIT(tools, 0.1)
AC_CONFIG_HEADER(config.h)
AC_O