summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-07-20 16:55:12 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-07-20 16:55:12 +0000
commit10d6970fb1857862846e8965a4d1edf5665ea59d (patch)
treed400e5cdc080dc6497b797d69d4c859491ec6e93 /bootstrap
parent50a339934c5e471f02a1d28171b14e2875a05cf0 (diff)
downloadbison-10d6970fb1857862846e8965a4d1edf5665ea59d.tar.gz
* bootstrap: Adjust to today's change to gnulib-tool by invoking
it with --assume-autoconf='latest-stable'.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap9
1 files changed, 5 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index 73cdef5d..e0de221a 100755
--- a/bootstrap
+++ b/bootstrap
@@ -92,6 +92,7 @@ case ${GNULIB_SRCDIR--} in
esac
<$GNULIB_SRCDIR/gnulib-tool || exit
+gnulib_tool="$GNULIB_SRCDIR/gnulib-tool --assume-autoconf=latest-stable"
gnulib_modules='
argmatch
@@ -128,14 +129,14 @@ while [ "$gnulib_modules" != "$previous_gnulib_modules" ]; do
gnulib_modules=`
(echo "$gnulib_modules"
for gnulib_module in $gnulib_modules; do
- $GNULIB_SRCDIR/gnulib-tool --extract-dependencies $gnulib_module
+ $gnulib_tool --extract-dependencies $gnulib_module
done) | sort -u
`
done
gnulib_files=`
(for gnulib_module in $gnulib_modules; do
- $GNULIB_SRCDIR/gnulib-tool --extract-filelist $gnulib_module
+ $gnulib_tool --extract-filelist $gnulib_module
done) | sort -u
`
@@ -226,12 +227,12 @@ esac
(echo '# This file is generated automatically by "bootstrap".' &&
echo 'AC_DEFUN([GNULIB_AUTOCONF_SNIPPET],[' &&
- $GNULIB_SRCDIR/gnulib-tool --extract-autoconf-snippet $gnulib_modules &&
+ $gnulib_tool --extract-autoconf-snippet $gnulib_modules &&
echo '])'
) >m4/gnulib.m4 || exit
(echo '# This file is generated automatically by "bootstrap".' &&
- $GNULIB_SRCDIR/gnulib-tool --extract-automake-snippet $gnulib_modules |
+ $gnulib_tool --extract-automake-snippet $gnulib_modules |
sed 's/^[ ]*AM_CPPFLAGS[ ]*+=/# (commented out by bootstrap) &/'
) >lib/gnulib.mk || exit