From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26488 invoked by alias); 21 Sep 2009 07:23:41 -0000 Received: (qmail 26472 invoked by uid 22791); 21 Sep 2009 07:23:40 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_37 X-Spam-Check-By: sourceware.org Received: from nwd2mail11.analog.com (HELO nwd2mail11.analog.com) (137.71.25.57) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 21 Sep 2009 07:23:37 +0000 Received: from nwd2hubcas1.ad.analog.com ([10.64.73.29]) by nwd2mail11.analog.com with ESMTP; 21 Sep 2009 03:23:29 -0400 Received: from nwd2exm5.ad.analog.com (10.64.51.20) by NWD2HUBCAS1.ad.analog.com (10.64.73.29) with Microsoft SMTP Server id 8.1.358.0; Mon, 21 Sep 2009 03:23:29 -0400 Received: from chinexm1.ad.analog.com ([10.99.27.42]) by nwd2exm5.ad.analog.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 21 Sep 2009 03:23:29 -0400 Received: from [10.99.29.103] ([10.99.29.103]) by chinexm1.ad.analog.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 21 Sep 2009 15:23:27 +0800 Message-ID: <4AB729EF.4080406@analog.com> Date: Mon, 21 Sep 2009 07:23:00 -0000 From: Jie Zhang User-Agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090701) MIME-Version: 1.0 To: Hui Zhu CC: gdb@sourceware.org, Eli Zaretskii , gdb-patches@sourceware.org Subject: Re: cvs-head "make install" get error with doc References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------020603000301040508010708" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-09/txt/msg00656.txt.bz2 --------------020603000301040508010708 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 708 Hui Zhu wrote: > make[3]: Entering directory `/home/teawater/gdb/bgdb/gdb' > make[4]: Entering directory `/home/teawater/gdb/bgdb/gdb/doc' > makeinfo --split-size=5000000 --split-size=5000000 -I > ../../../src/gdb/doc/../../readline/doc -I ../../../src/gdb/doc/../mi > -I ../../../src/gdb/doc \ > -o gdb.info ../../../src/gdb/doc/gdb.texinfo > ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {. > ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }. > ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {. > ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {. > ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }. > ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }. This patch should fix it. Jie --------------020603000301040508010708 Content-Type: text/x-patch; name="gdb-fix-doc.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb-fix-doc.diff" Content-length: 619 * doc/gdb.texinfo: Escape "{" and "}". Index: doc/gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.627 diff -u -r1.627 gdb.texinfo --- doc/gdb.texinfo 19 Sep 2009 10:46:20 -0000 1.627 +++ doc/gdb.texinfo 21 Sep 2009 07:18:00 -0000 @@ -23361,7 +23361,7 @@ @smallexample (gdb) -stack-list-variables --thread 1 --frame 0 --all-values -^done,variables=[{name="x",value="11"},{name="s",value="{a = 1, b = 2}"}] +^done,variables=[@{name="x",value="11"@},@{name="s",value="@{a = 1, b = 2@}"@}] (gdb) @end smallexample --------------020603000301040508010708--