mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-07-23 11:40:33 +00:00
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.
This commit is contained in:
@@ -1,3 +1,15 @@
|
|||||||
|
2011-07-10 Joel E. Denny <[email protected]>
|
||||||
|
|
||||||
|
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 <[email protected]>
|
2011-07-10 Joel E. Denny <[email protected]>
|
||||||
|
|
||||||
build: create xz instead of bzip2 tarballs.
|
build: create xz instead of bzip2 tarballs.
|
||||||
|
|||||||
@@ -216,6 +216,8 @@ release:
|
|||||||
|
|
||||||
** Update the submodules. See above.
|
** 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
|
** 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.
|
week before a stable release, to give them time to translate them.
|
||||||
Before generating the *.pot files, make sure that po/POTFILES.in and
|
Before generating the *.pot files, make sure that po/POTFILES.in and
|
||||||
|
|||||||
@@ -105,6 +105,7 @@ Tommy Nordgren [email protected]
|
|||||||
Troy A. Johnson [email protected]
|
Troy A. Johnson [email protected]
|
||||||
Tys Lefering [email protected]
|
Tys Lefering [email protected]
|
||||||
Vin Shelton [email protected]
|
Vin Shelton [email protected]
|
||||||
|
W.C.A. Wijngaards [email protected]
|
||||||
Wayne Green [email protected]
|
Wayne Green [email protected]
|
||||||
Wolfram Wagner [email protected]
|
Wolfram Wagner [email protected]
|
||||||
Wwp [email protected]
|
Wwp [email protected]
|
||||||
|
|||||||
+4
-2
@@ -17,8 +17,10 @@
|
|||||||
|
|
||||||
# In order for some versions of Sun Studio to compile our C++ test cases
|
# 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
|
# correctly, we need Autoconf 2.64 or better to handle the restrict
|
||||||
# keyword in at least string.h from gnulib.
|
# keyword in at least string.h from gnulib. We need Autoconf 2.68 or
|
||||||
AC_PREREQ(2.64)
|
# better to avoid a typo in the `configure --help' entry for the YACC
|
||||||
|
# environment variable.
|
||||||
|
AC_PREREQ(2.68)
|
||||||
|
|
||||||
AC_INIT([GNU Bison],
|
AC_INIT([GNU Bison],
|
||||||
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
|
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
|
||||||
|
|||||||
Reference in New Issue
Block a user