This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problems with nearly-empty configure.ac's


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 needs config.guess and config.sub.  They are supposed to
be found in the same directory as install-sh.  configure checks for only
install-sh, probably out of laziness.  This could be improved.

-- 
Peter Eisentraut   peter_e at gmx dot net




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]