projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77791f9
)
texi2pod.pl: add no-op --no-split option support [PR28144]
author
Sergei Trofimovich
<siarheit@google.com>
Mon, 26 Jul 2021 21:51:18 +0000
(22:51 +0100)
committer
Sergei Trofimovich
<siarheit@google.com>
Wed, 28 Jul 2021 10:39:40 +0000
(11:39 +0100)
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.
etc/texi2pod.pl
patch
|
blob
|
history
diff --git
a/etc/texi2pod.pl
b/etc/texi2pod.pl
index 11f70d156bee3fc797db2864892121e33d10bdbd..dcf2b437640f26ce1c07deaa0cf38a61671413fc 100644
(file)
--- 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 {