From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 487AA3858C00 for ; Wed, 11 Jan 2023 22:30:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 487AA3858C00 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=polymtl.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=polymtl.ca Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 30BMUZLf025408 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 11 Jan 2023 17:30:40 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 30BMUZLf025408 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1673476240; bh=62LGpnv8TMBLawH3QfzkkQlTWKxcZOzWlg6aq7MhwP0=; h=Date:Subject:To:References:From:In-Reply-To:From; b=E+nucifPnrYEQ3lqv0O9d3kpnn/tiyHJEt0dfnjDqtlcSN6SBo9+t/grsLDgR6CdV 04YWn1VhBSKR8S18ZIoyroJl/+poIU2ogTBGGmwaoPWKzrNrymbuDMVu40mzJkYBRR HQ9A+uYwgQDXUTRqiyQ02u2mr4vO3OzNAIec8CP0= Received: from [10.0.0.11] (unknown [217.28.27.60]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id A36E71E0D3; Wed, 11 Jan 2023 17:30:35 -0500 (EST) Message-ID: <753ef485-466a-fc85-0735-c691b69a2dfa@polymtl.ca> Date: Wed, 11 Jan 2023 17:30:35 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH] gdb/doc: fix install-html with Texinfo 7 Content-Language: en-US To: Tom Tromey , Simon Marchi via Gdb-patches References: <20230110050725.1768197-1-simon.marchi@polymtl.ca> <87358g7pik.fsf@tromey.com> From: Simon Marchi In-Reply-To: <87358g7pik.fsf@tromey.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Wed, 11 Jan 2023 22:30:35 +0000 X-Spam-Status: No, score=-3031.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,KAM_NUMSUBJECT,NICE_REPLY_A,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 1/11/23 16:03, Tom Tromey wrote: >>>>>> "Simon" == Simon Marchi via Gdb-patches writes: > > Simon> Starting with Texinfo 7 (this commit [1]), the output directory for the > Simon> HTML doc format is gdb/doc/gdb_html, rather than gdb/doc/gdb previously. > Simon> This breaks the install-html target, which expects the HTML doc to be in > Simon> gdb/doc/gdb: > ... > Simon> Fix this by adding -o switches to the HTML targets, to force the output > Simon> directories. > > Looks good to me. Thank you. > > Tom Pushed, thanks.