]> git.saurik.com Git - bison.git/commitdiff
gnulib: update.
authorAkim Demaille <akim@lrde.epita.fr>
Thu, 5 Jul 2012 07:37:20 +0000 (09:37 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Thu, 5 Jul 2012 09:13:47 +0000 (11:13 +0200)
* bootstrap, gnulib: Update.
* cfg.mk (syntax-check): Don't check "error" usage in bison.texi.

bootstrap
cfg.mk
gnulib
m4/.gitignore

index ce37a2c06ca93b6a8cf7b681d441bb3c41dcaf7b..e9849102d8777bcbb19f2d37d386ce0ba45f7466 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Print a version string.
-scriptversion=2012-05-15.06; # UTC
+scriptversion=2012-07-03.20; # UTC
 
 # Bootstrap this package from checked-out sources.
 
@@ -215,7 +215,7 @@ find_tool ()
   eval "export $find_tool_envvar"
 }
 
-# Find sha1sum, named gsha1sum on MacPorts, and shasum on MacOS 10.6.
+# Find sha1sum, named gsha1sum on MacPorts, and shasum on Mac OS X 10.6.
 find_tool SHA1SUM sha1sum gsha1sum shasum
 
 # Override the default configuration, if necessary.
@@ -230,7 +230,6 @@ esac
 test -z "${gnulib_extra_files}" && \
   gnulib_extra_files="
         $build_aux/install-sh
-        $build_aux/missing
         $build_aux/mdate-sh
         $build_aux/texinfo.tex
         $build_aux/depcomp
@@ -855,7 +854,8 @@ echo "$0: $gnulib_tool $gnulib_tool_options --import ..."
 $gnulib_tool $gnulib_tool_options --import $gnulib_modules &&
 
 for file in $gnulib_files; do
-  symlink_to_dir "$GNULIB_SRCDIR" $file || exit
+  symlink_to_dir "$GNULIB_SRCDIR" $file \
+    || { echo "$0: failed to symlink $file" 1>&2; exit 1; }
 done
 
 bootstrap_post_import_hook \
@@ -896,7 +896,8 @@ for file in $gnulib_extra_files; do
   build-aux/*) dst=$build_aux/${file#build-aux/};;
   *) dst=$file;;
   esac
-  symlink_to_dir "$GNULIB_SRCDIR" $file $dst || exit
+  symlink_to_dir "$GNULIB_SRCDIR" $file $dst \
+    || { echo "$0: failed to symlink $file" 1>&2; exit 1; }
 done
 
 if test $with_gettext = yes; then
diff --git a/cfg.mk b/cfg.mk
index 31a2532f8ee06a094b041b216ca4d7d252ad7c11..222d3bc306dec1da786ed294de44ae4bc6f88f1d 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -72,5 +72,5 @@ $(call exclude,                                                               \
   require_config_h_first=^(lib/yyerror|data/(glr|yacc))\.c$$           \
   space_tab=^tests/(input|c\+\+)\.at$$                                 \
   trailing_blank=^src/parse-gram.[ch]$$                                        \
-  unmarked_diagnostics=^djgpp/                                         \
+  unmarked_diagnostics=^(djgpp/|doc/bison.texi$$)                      \
 )
diff --git a/gnulib b/gnulib
index b42157dd01e3243646f5a8270c09ee125a8aca21..31ec8584048ce391f1ff4fb26fde3c7389c656f3 160000 (submodule)
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit b42157dd01e3243646f5a8270c09ee125a8aca21
+Subproject commit 31ec8584048ce391f1ff4fb26fde3c7389c656f3
index d47aee025bfdb4aa01bbfbb705f8276f9163abbb..dc915a40ba06c1fef3a16d4b1991cd3ff25d2cc3 100644 (file)
 /xstrndup.m4
 /off_t.m4
 /sys_types_h.m4
+/fseterr.m4