From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 69695383C7EC for ; Sat, 10 Dec 2022 08:29:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 69695383C7EC Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 1988C34115F; Sat, 10 Dec 2022 08:29:34 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH] newlib: info: tweak iconv node to avoid collisions Date: Sat, 10 Dec 2022 03:29:31 -0500 Message-Id: <20221210082931.29182-1-vapier@gentoo.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <419fd802-0895-3c9e-dd0d-be9963d7a83b@foss.st.com> References: <419fd802-0895-3c9e-dd0d-be9963d7a83b@foss.st.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: We have "Iconv" and "iconv" nodes which generates Iconv.html and iconv.html files. On a case-insensitive filesystem, these collide. Rename the "Iconv" node to match the chapter name that it's already using to avoid the issue. --- newlib/libc/iconv/iconv.tex | 2 +- newlib/libc/libc.texi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/newlib/libc/iconv/iconv.tex b/newlib/libc/iconv/iconv.tex index 42d04c0b616f..5b1f7518a4fe 100644 --- a/newlib/libc/iconv/iconv.tex +++ b/newlib/libc/iconv/iconv.tex @@ -1,4 +1,4 @@ -@node Iconv +@node Encoding conversions @chapter Encoding conversions (@file{iconv.h}) This chapter describes the Newlib iconv library. diff --git a/newlib/libc/libc.texi b/newlib/libc/libc.texi index d217d8118277..72328e148bf6 100644 --- a/newlib/libc/libc.texi +++ b/newlib/libc/libc.texi @@ -151,7 +151,7 @@ into another language, under the above conditions for modified versions. * Posix:: * Syscalls:: * Arglists:: -* Iconv:: +* Encoding conversions:: * Overflow Protection:: * Document Index:: -- 2.38.1