public inbox for cygwin-cvs@sourceware.org help / color / mirror / Atom feed
From: Michael Frysinger <vapier@sourceware.org> To: cygwin-cvs@sourceware.org, newlib-cvs@sourceware.org Subject: [newlib-cygwin] texi2pod.pl: add no-op --no-split option support [PR28144] Date: Thu, 11 Nov 2021 01:16:25 +0000 (GMT) [thread overview] Message-ID: <20211111011625.4844B3858015@sourceware.org> (raw) https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=784020ca76dd82329580c48cdbca1fc61ceff5a4 commit 784020ca76dd82329580c48cdbca1fc61ceff5a4 Author: Sergei Trofimovich <siarheit@google.com> 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 {
reply other threads:[~2021-11-11 1:16 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20211111011625.4844B3858015@sourceware.org \ --to=vapier@sourceware.org \ --cc=cygwin-cvs@sourceware.org \ --cc=newlib-cvs@sourceware.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).