This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [mingw,gdb cvs] make install error on gdb.textinfo


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]