From 10d6970fb1857862846e8965a4d1edf5665ea59d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 20 Jul 2006 16:55:12 +0000 Subject: [PATCH 1/1] * bootstrap: Adjust to today's change to gnulib-tool by invoking it with --assume-autoconf='latest-stable'. --- ChangeLog | 5 +++++ bootstrap | 9 +++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 420fe788..94cf4d87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-07-20 Paul Eggert + + * bootstrap: Adjust to today's change to gnulib-tool by invoking + it with --assume-autoconf='latest-stable'. + 2006-07-13 Joel E. Denny * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at 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 -- 2.45.2