summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel E. Denny <joeldenny@joeldenny.org>2011-07-10 13:42:12 -0400
committerJoel E. Denny <joeldenny@joeldenny.org>2011-07-10 13:53:42 -0400
commitc12aa01f82a03db044985513a878497e5ab58377 (patch)
tree8e80a79d92c35483824ae6ef037b6b5dbd4edc10
parentb55b68608ff93cede27113663c6c0b0c82539ebc (diff)
downloadbison-c12aa01f82a03db044985513a878497e5ab58377.tar.gz
build: avoid YACC typo inherited from Autoconf.
The typo shows up in the `configure --help' output. Reported by W.C.A. Wijngaards and Paul Eggert at <http://lists.gnu.org/archive/html/bug-bison/2011-07/msg00000.html>. * README-hacking (Release Procedure): Remind about updating maintainer tools before a release. * THANKS (W.C.A. Wijngaards): Add. * configure.ac (AC_PREREQ): Set to 2.68, which fixes the YACC typo. (cherry picked from commit 845346b3bb526d0f18878f15d906f05205b5c618)
-rw-r--r--ChangeLog12
-rw-r--r--README-hacking2
-rw-r--r--THANKS1
-rw-r--r--configure.ac6
4 files changed, 19 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 48fcbdff..c9c6d813 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2011-07-10 Joel E. Denny <joeldenny@joeldenny.org>
+ build: avoid YACC typo inherited from Autoconf.
+ The typo shows up in the `configure --help' output. Reported by
+ W.C.A. Wijngaards and Paul Eggert at
+ <http://lists.gnu.org/archive/html/bug-bison/2011-07/msg00000.html>.
+ * README-hacking (Release Procedure): Remind about updating
+ maintainer tools before a release.
+ * THANKS (W.C.A. Wijngaards): Add.
+ * configure.ac (AC_PREREQ): Set to 2.68, which fixes the YACC
+ typo.
+
+2011-07-10 Joel E. Denny <joeldenny@joeldenny.org>
+
build: create xz instead of bzip2 tarballs.
Suggested by Jim Meyering at
<http://lists.gnu.org/archive/html/bug-bison/2011-06/msg00012.html>.
diff --git a/README-hacking b/README-hacking
index b334ddc5..6a240624 100644
--- a/README-hacking
+++ b/README-hacking
@@ -219,6 +219,8 @@ release:
** Update the submodules. See above.
+** Update maintainer tools, such as Autoconf. See above.
+
** Try to get the *.pot files to the Translation Project at least one
week before a stable release, to give them time to translate them.
Before generating the *.pot files, make sure that po/POTFILES.in and
diff --git a/THANKS b/THANKS
index 41c4b55f..921b4ef5 100644
--- a/THANKS
+++ b/THANKS
@@ -107,6 +107,7 @@ Tommy Nordgren tommy.nordgren@chello.se
Troy A. Johnson troyj@ecn.purdue.edu
Tys Lefering twlevo@gmail.com
Vin Shelton acs@alumni.princeton.edu
+W.C.A. Wijngaards wouter@NLnetLabs.nl
Wayne Green wayne@infosavvy.com
Wolfram Wagner ww@mpi-sb.mpg.de
Wwp subscript@free.fr
diff --git a/configure.ac b/configure.ac
index d0e3df6f..d75924e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,8 +17,10 @@
# In order for some versions of Sun Studio to compile our C++ test cases
# correctly, we need Autoconf 2.64 or better to handle the restrict
-# keyword in at least string.h from gnulib.
-AC_PREREQ(2.64)
+# keyword in at least string.h from gnulib. We need Autoconf 2.68 or
+# better to avoid a typo in the `configure --help' entry for the YACC
+# environment variable.
+AC_PREREQ(2.68)
AC_INIT([GNU Bison],
m4_esyscmd([build-aux/git-version-gen .tarball-version]),