Hey Eric,

On Fri, Oct 24, 2008 at 11:34 AM, Eric Blake <[EMAIL PROTECTED]> wrote:
> Thanks for the patch.  Care to add a ChangeLog entry, and wrap the line to
> not exceed 80 columns?
done and done.

> Meanwhile, I'd like an opinion from automake users
> as to whether this patch makes sense to apply, or better reasoning than I
> can offer why it is not correct.
fair enough.

cheers,
-- 
Clinton Roy
CSIRO - Robotics Platform Engineer
Autonomous Systems Lab

humbug.org.au  - Brisbane Unix Group
azure.humbug.org.au/~croy/blog - Blog
flickr.com/photos/croy/ - Photos
diff --git a/ChangeLog b/ChangeLog
index c8dca18..c4ab037 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-10-24  Clinton Roy  <[EMAIL PROTECTED]>
+	
+	* bin/autoreconf.in (parse_args): Pass --include to aclocal.
+	* doc/autoconf.texi (autoreconf Invocation): Updates for above.
+	
 2008-10-23  Eric Blake  <[EMAIL PROTECTED]>
 
 	Whitespace cleanup.
diff --git a/bin/autoreconf.in b/bin/autoreconf.in
index 923f8ca..86e8826 100644
--- a/bin/autoreconf.in
+++ b/bin/autoreconf.in
@@ -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);
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index 71f507f..f645944 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -1663,7 +1663,8 @@ run @samp{make}.
 @item [EMAIL PROTECTED]
 @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
[EMAIL PROTECTED] internally.
 
 @item [EMAIL PROTECTED]
 @itemx -B @var{dir}

Reply via email to