From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 4844B3858015; Thu, 11 Nov 2021 01:16:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4844B3858015 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Michael Frysinger To: cygwin-cvs@sourceware.org, newlib-cvs@sourceware.org Subject: [newlib-cygwin] texi2pod.pl: add no-op --no-split option support [PR28144] X-Act-Checkin: newlib-cygwin X-Git-Author: Sergei Trofimovich X-Git-Refname: refs/heads/master X-Git-Oldrev: c0d69d69670f869f3682cc5096469fdc60934e3b X-Git-Newrev: 784020ca76dd82329580c48cdbca1fc61ceff5a4 Message-Id: <20211111011625.4844B3858015@sourceware.org> Date: Thu, 11 Nov 2021 01:16:25 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Nov 2021 01:16:25 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=784020ca76dd82329580c48cdbca1fc61ceff5a4 commit 784020ca76dd82329580c48cdbca1fc61ceff5a4 Author: Sergei Trofimovich Date: Mon Jul 26 22:51:18 2021 +0100 texi2pod.pl: add no-op --no-split option support [PR28144] Change 2faf902da ("generate single html manual page by default") added use of --no-split option to makeinfo. binutils reuses makeinfo options for texi2pod.pl wrapper. Unsupported option led to silent manpage truncation. The change adds no-op option support. etc/ * texi2pod.pl: Handle no-op --no-split option. Diff: --- etc/texi2pod.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl index 11f70d156..dcf2b4376 100644 --- a/etc/texi2pod.pl +++ b/etc/texi2pod.pl @@ -59,6 +59,8 @@ while ($_ = shift) { $flag = shift; } push (@ipath, $flag); + } elsif (/^--no-split$/) { + # ignore option for makeinfo compatibility } elsif (/^-/) { usage(); } else {