This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [mingw,gdb cvs] make install error on gdb.textinfo
- From: Yao Qi <yao at codesourcery dot com>
- To: <gdb at sourceware dot org>, "gdb-patches at sourceware dot org" <gdb-patches at sourceware dot org>
- Date: Thu, 9 Feb 2012 21:35:14 +0800
- Subject: Re: [mingw,gdb cvs] make install error on gdb.textinfo
- References: <4F33C57C.6000705@gmail.com>
On 02/09/2012 09:09 PM, asmwarrior wrote:
> Hi, When I run the install command:
>
> make -C gdb install INSTALL_PROGRAM='install -s'
> DESTDIR=/f/build_gdb/binnew
>
Hi, thanks for reporting this error.
> ../../../gdb/gdb/doc/gdb.texinfo:24017: `@end' expected `defvar', but
> saw `table
> '.
> ../../../gdb/gdb/doc/gdb.texinfo:23997: No matching `@end defvar'.
> ../../../gdb/gdb/doc/gdb.texinfo:23957: No matching `@end table'.
> makeinfo: Removing output file `gdb.info' due to errors; use --force to
This error exists on linux as well. Here is the patch to fix.
--
Yao (éå)
gdb/doc/
* gdb.texinfo (Symbols In Python): Add missing `@end defvar'.
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 02beed7..4f863dd 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -23997,6 +23997,7 @@ of a symbol. Each address class is a constant defined in the
This is @code{True} if evaluating this symbol's value requires a frame
(@pxref{Frames In Python}) and @code{False} otherwise. Typically,
local variables will require a frame, but other symbols will not.
+@end defvar
@defvar Symbol.is_argument
@code{True} if the symbol is an argument of a function.