This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Require texinfo 4.7
- From: "Aaron W. LaFramboise" <aaronavay62 at aaronwl dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Wed, 23 Jul 2008 14:29:18 -0500
- Subject: [PATCH] Require texinfo 4.7
With texinfo 4.6, bootstrap on trunk fails with the following.
if [ xinfo = xinfo ]; then \
rm -f doc/gnat_ugn.info*; \
makeinfo --split-size=5000000 --split-size=5000000 --split-size=5000000 --no-split -I../../gcc/gcc/doc/include \
-I../../gcc/gcc/ada -o doc/gnat_ugn.info doc/gnat_ugn.texi; \
else true; fi
doc/gnat_ugn.texi:20022: Unknown command `headitem'.
makeinfo: Removing output file `doc/gnat_ugn.info' due to errors; use --force to preserve.
The @headitem command was added in texinfo 4.7, according to
<http://cvs.savannah.gnu.org/viewvc/*checkout*/texinfo/texinfo/NEWS?revision=HEAD>.
This patch updates the prerequisites to require texinfo 4.7.
OK to commit?
2008-07-23 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* doc/install.texi (Prerequisites): Document texinfo 4.7 requirement.
Index: gcc/doc/install.texi
===================================================================
--- gcc/doc/install.texi (revision 137752)
+++ gcc/doc/install.texi (working copy)
@@ -386,7 +386,7 @@ Necessary to build GCC during developmen
files are not included in the SVN repository. They are included in
releases.
-@item Texinfo version 4.4 (or later)
+@item Texinfo version 4.7 (or later)
Necessary for running @command{makeinfo} when modifying @file{*.texi}
files to test your changes.