]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Pass autoreconf -I to aclocal -I
authorClinton Roy <clinton.roy@gmail.com>
Fri, 24 Oct 2008 02:36:47 +0000 (12:36 +1000)
committerEric Blake <ebb9@byu.net>
Mon, 10 Nov 2008 17:34:59 +0000 (10:34 -0700)
* bin/autoreconf.in (parse_args): Pass --include to aclocal.
* doc/autoconf.texi (autoreconf Invocation): Updates for above.
* NEWS: Document it.
* THANKS: Update.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
NEWS
THANKS
bin/autoreconf.in
doc/autoconf.texi

index 6dd25c6f3e09b1310e7dba7ee0c1ebcf3ca76bdb..b0988e43b240202a9f6574cfb7c34cd5c0196697 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-11-10  Clinton Roy  <clinton.roy@gmail.com>  (tiny change)
+
+       Pass autoreconf -I to aclocal -I
+       * bin/autoreconf.in (parse_args): Pass --include to aclocal.
+       * doc/autoconf.texi (autoreconf Invocation): Updates for above.
+       * NEWS: Document it.
+       * THANKS: Update.
+
 2008-11-10  Eric Blake  <ebb9@byu.net>
 
        Try 'print -r --' as a non-forking variant of 'printf %s\\n'.
diff --git a/NEWS b/NEWS
index dd771241edf66224a997f0d6f3b315499bae9244..f0e298ecd3df542e89d61e9d8191d02e99fa9aaa 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -17,6 +17,9 @@ GNU Autoconf NEWS - User visible changes.
    The warning is still printed, and you should really fix it by
    providing a fourth parameter to AC_CHECK_HEADER/AC_CHECK_HEADERS.
 
+** Autoreconf added aclocal to the set of programs affected by the
+   `autoreconf -I dir' option.
+
 ** The following documented m4sugar macros are new:
    m4_curry  m4_default_quoted  m4_map_args  m4_map_args_pair
    m4_set_map
diff --git a/THANKS b/THANKS
index a9b65ce1a254ae00b78a2ba736d4a80acbf5bf1f..66c98cc36988b1d4607c64b3a18f66c2694ee4ec 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -69,6 +69,7 @@ Christian Krackowizer       ckrackowiz@std.schuler-ag.com
 Christian Krone             krischan@sql.de
 Christopher Hulbert         cchgroupmail@gmail.com
 Christopher Lee             chrislee@ri.cmu.edu
+Clinton Roy                 clinton.roy@gmail.com
 Cort Dougan                 cort@cs.nmt.edu
 D'Arcy A MacIsaac           ?
 Dalibor Topic               robilad@kaffe.org
index 923f8caf7a456150da60a070fd71cb32d76b287d..86e88261c6733f27b960eed14b78616175683c43 100644 (file)
@@ -186,6 +186,7 @@ sub parse_args ()
 
   # Dispatch autoreconf's option to the tools.
   # --include;
+  $aclocal    .= join (' -I ', '', map { shell_quote ($_) } @include);
   $autoconf   .= join (' --include=', '', map { shell_quote ($_) } @include);
   $autoconf   .= join (' --prepend-include=', '', map { shell_quote ($_) } @prepend_include);
   $autoheader .= join (' --include=', '', map { shell_quote ($_) } @include);
index 86bed7f8d41a0ee22fbd3835f961d9a007be8af0..fbb0a3b1e86ec66ed4fca48d8417323adc463b28 100644 (file)
@@ -1663,7 +1663,8 @@ 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.
+Passed on to @command{aclocal}, @command{autoconf} and
+@command{autoheader} internally.
 
 @item --prepend-include=@var{dir}
 @itemx -B @var{dir}