From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17901 invoked by alias); 9 Feb 2012 13:35:38 -0000 Received: (qmail 17752 invoked by uid 22791); 9 Feb 2012 13:35:36 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,TW_SM X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 09 Feb 2012 13:35:20 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1RvU9f-0005Gh-Kc from Yao_Qi@mentor.com ; Thu, 09 Feb 2012 05:35:19 -0800 Received: from SVR-ORW-FEM-03.mgc.mentorg.com ([147.34.97.39]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 9 Feb 2012 05:35:19 -0800 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.1.289.1; Thu, 9 Feb 2012 05:35:18 -0800 Message-ID: <4F33CB92.50204@codesourcery.com> Date: Thu, 09 Feb 2012 13:35:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; Linux i686; rv:9.0) Gecko/20111220 Thunderbird/9.0 MIME-Version: 1.0 To: , "gdb-patches@sourceware.org" Subject: Re: [mingw,gdb cvs] make install error on gdb.textinfo References: <4F33C57C.6000705@gmail.com> In-Reply-To: <4F33C57C.6000705@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-02/txt/msg00023.txt.bz2 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.