From: Stepan Kasal Date: Thu, 30 Mar 2006 17:37:47 +0000 (+0000) Subject: Document that autoreconf doesn't pass -I to aclocal. X-Git-Tag: AUTOCONF-2.59c~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6676554c475cb1254f1b0459dbd76e447cbf47f7;p=thirdparty%2Fautoconf.git Document that autoreconf doesn't pass -I to aclocal. --- diff --git a/ChangeLog b/ChangeLog index 4c925b610..e39b1b07c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-30 Chris Pickett (tiny change) + + * doc/autoconf.texi (autoreconf Invocation): Mention that -I for + aclocal cannot be given on the command line. + 2006-03-29 Paul Eggert * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 966ab9f25..75af9e651 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -1541,10 +1541,12 @@ run @samp{make}. @item --include=@var{dir} @itemx -I @var{dir} Append @var{dir} to the include path. Multiple invocations accumulate. +Passed on to @command{autoconf} and @command{autoheader} internally. @item --prepend-include=@var{dir} @item -B @var{dir} Prepend @var{dir} to the include path. Multiple invocations accumulate. +Passed on to @command{autoconf} and @command{autoheader} internally. @item --warnings=@var{category} @itemx -W @var{category} @@ -1587,6 +1589,8 @@ enable the warnings about obsolete constructs, you would use @option{-W none,obsolete}. @end table +If you want @command{autoreconf} to pass flags that are not listed here +to @command{aclocal}, set @code{ACLOCAL_AMFLAGS} in your Makefile.am. @c ========================================= Initialization and Output Files.