public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] texi2pod.pl: add no-op --no-split option support [PR28144]
@ 2021-11-11 1:16 Michael Frysinger
0 siblings, 0 replies; only message in thread
From: Michael Frysinger @ 2021-11-11 1:16 UTC (permalink / raw)
To: cygwin-cvs, newlib-cvs
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 {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-11-11 1:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-11 1:16 [newlib-cygwin] texi2pod.pl: add no-op --no-split option support [PR28144] Michael Frysinger
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).