From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6571 invoked by alias); 15 Jan 2018 12:12:10 -0000 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 Received: (qmail 6399 invoked by uid 89); 15 Jan 2018 12:12:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-7.0 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_1,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=D*ca, H*r:sk:RSA_AES, Hx-languages-length:1171 X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Jan 2018 12:12:02 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eb3bL-0006Hh-7h for gdb-patches@sourceware.org; Mon, 15 Jan 2018 07:10:59 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eb3ah-0005up-3Q; Mon, 15 Jan 2018 07:10:15 -0500 Received: from [176.228.60.248] (port=3746 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1eb3ag-0002SZ-42; Mon, 15 Jan 2018 07:10:14 -0500 Date: Mon, 15 Jan 2018 12:12:00 -0000 Message-Id: <83bmhvz5k6.fsf@gnu.org> From: Eli Zaretskii To: Szabolcs Nagy CC: gdb-patches@sourceware.org, nd@arm.com, sergiodj@redhat.com, simon.marchi@polymtl.ca, tom@tromey.com In-reply-to: <5A5C9504.4060001@arm.com> (message from Szabolcs Nagy on Mon, 15 Jan 2018 11:48:20 +0000) Subject: Re: [committed] Fix gdb.texinfo for old makeinfo (again) Reply-to: Eli Zaretskii References: <5A5C9504.4060001@arm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-IsSubscribed: yes X-SW-Source: 2018-01/txt/msg00260.txt.bz2 > Date: Mon, 15 Jan 2018 11:48:20 +0000 > From: Szabolcs Nagy > CC: nd@arm.com, Sergio Durigan Junior , > Simon Marchi , > Tom Tromey , Eli Zaretskii > > With old makeinfo (version 4.13) the changes introduced in > > commit ba643918cf869fa0d064d733f69b453b6fe642ea > Author: Sergio Durigan Junior > > Install and generate docs for gdb-add-index > > fail to build with > > gdb/doc/gdb.texinfo:2498: warning: `.' or `,' must follow @xref, not `@'. > gdb/doc/gdb.texinfo:2517: warning: `.' or `,' must follow @xref, not `@'. > gdb/doc/gdb.texinfo:43443: Node `gdb-add-index man' requires a sectioning command (e.g., @unnumberedsubsec). > gdb/doc/gdb.texinfo:43443: `gdb-add-index man' has no Up field (perhaps incorrect sectioning?). > gdb/doc/gdb.texinfo:43350: Next field of node `gdbinit man' not pointed to (perhaps incorrect sectioning?). > gdb/doc/gdb.texinfo:43443: This node (gdb-add-index man) has the bad Prev. > > This patch fixes the warnings too. > Committed as obvious. Thanks.