From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2206) id E4F0D3858D35; Thu, 29 Jun 2023 15:09:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E4F0D3858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1688051347; bh=OyMN29jx/GoUanE7ayJdJ866vH0nXxjTVaJ8IVImlIU=; h=From:To:Subject:Date:From; b=A0zPHOb/D4yrlp+a+Mv/j/76FStOLH7Eh0cVOllNLMnhL6y/CAMM1vs4sbeUfzvzD 4+lWIZs/MhrjbD2392ZXEOX9UvUjaenifCwXKcpIYRDiohTt6Gk2y6tXdzu/Ps6x0k 1kJndyX0iZgAWQ0+VLuwMw9qOoHhidMJ2HWct7KY= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Siddhesh Poyarekar To: glibc-cvs@sourceware.org Subject: [glibc] Make sure INSTALL is ASCII plaintext X-Act-Checkin: glibc X-Git-Author: Siddhesh Poyarekar X-Git-Refname: refs/heads/master X-Git-Oldrev: 1a21693e16a3f3d10f41c486b97fbecb53dd2087 X-Git-Newrev: c14f2e4aaa0f43e2ccb4e77deaa5101dd5af384a Message-Id: <20230629150907.E4F0D3858D35@sourceware.org> Date: Thu, 29 Jun 2023 15:09:07 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c14f2e4aaa0f43e2ccb4e77deaa5101dd5af384a commit c14f2e4aaa0f43e2ccb4e77deaa5101dd5af384a Author: Siddhesh Poyarekar Date: Thu Jun 29 11:07:52 2023 -0400 Make sure INSTALL is ASCII plaintext Add --disable-encoding to makeinfo flags so that it does not generate unicode quote glyphs. Signed-off-by: Siddhesh Poyarekar Diff: --- INSTALL | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 6d51475536..f921f82b4c 100644 --- a/INSTALL +++ b/INSTALL @@ -469,8 +469,8 @@ build the GNU C Library: * GNU 'make' 4.0 or newer - As of release time, GNU 'make' 4.4 is the newest verified to work to - build the GNU C Library. + As of release time, GNU 'make' 4.4 is the newest verified to work + to build the GNU C Library. * GCC 6.2 or newer diff --git a/Makefile b/Makefile index f324df7a1f..f26050204a 100644 --- a/Makefile +++ b/Makefile @@ -734,7 +734,7 @@ endif INSTALL: manual/install-plain.texi manual/macros.texi \ $(common-objpfx)manual/pkgvers.texi manual/install.texi makeinfo --no-validate --plaintext --no-number-sections \ - -I$(common-objpfx)manual $< -o $@-tmp + --disable-encoding -I$(common-objpfx)manual $< -o $@-tmp $(AWK) 'NF == 0 { ++n; next } \ NF != 0 { while (n-- > 0) print ""; n = 0; print }' \ < $@-tmp > $@-tmp2