summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorClinton Roy <clinton.roy@gmail.com>2008-10-24 12:36:47 +1000
committerEric Blake <ebb9@byu.net>2008-11-10 10:34:59 -0700
commit44fbeef86d03f2b754a4444e38f38631ad318946 (patch)
treed664fa96415322deaa00362b4cd2b4a9545ba458 /bin
parent3b78b1ae088255de3108bf7497857ea133aa604b (diff)
downloadautoconf-44fbeef86d03f2b754a4444e38f38631ad318946.tar.gz
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. Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'bin')
-rw-r--r--bin/autoreconf.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/autoreconf.in b/bin/autoreconf.in
index 923f8caf..86e88261 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);