]> git.saurik.com Git - bison.git/commitdiff
* bootstrap: Adjust to today's change to gnulib-tool by invoking
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 20 Jul 2006 16:55:12 +0000 (16:55 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 20 Jul 2006 16:55:12 +0000 (16:55 +0000)
it with --assume-autoconf='latest-stable'.

ChangeLog
bootstrap

index 420fe7885ee840f8b6037d73ee776a740e11131d..94cf4d870a05f624889847700cdf26c9aa8ce05b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * bootstrap: Adjust to today's change to gnulib-tool by invoking
+       it with --assume-autoconf='latest-stable'.
+
 2006-07-13  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
index 73cdef5d3e35b6297ea9c159ac3374e33f1e1cd6..e0de221a58852b159a8538e12675c37a3e898b59 100755 (executable)
--- 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