autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: wierd problem


From: Ralf Wildenhues
Subject: Re: wierd problem
Date: Tue, 25 Jan 2005 21:23:19 +0100
User-agent: Mutt/1.5.6+20040907i

* Jonas Geiregat wrote on Tue, Jan 25, 2005 at 08:09:21PM CET:
> On Tue, 25 Jan 2005 20:04:53 +0100, Ralf Wildenhues
> <address@hidden> wrote:
> 
> I actually forgot that its name is --add-missing (short: -a).
> > This option is documented.
> 
> But no man page ?

Well, this depends, actually.  My system has one (Debian has written
quite a few manpages for software that doesn't have them otherwise).

But commonly, GNU documentation comes in info format, so most likely
  info Automake
should help (`info automake' tells more about invocation specifically).

> I forgot to mention an other question when running aclocal I get alot
> of warnings, what does this mean ?
> /usr/share/aclocal/libast.m4:311: warning: underquoted definition of
> AST_HEADER_CHECKS
[...]

It means that 
  AC_DEFUN(AST_HEADER_CHECKS, [...])
is not quoted enough, it needs to be
  AC_DEFUN([AST_HEADER_CHECKS], [...])

and is a bug of the package to which this file belongs (it's not
Automake, but libast or whatever it's called).

Regards,
Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]