From: Sergei Trofimovich Date: Mon, 26 Jul 2021 21:51:18 +0000 (+0100) Subject: texi2pod.pl: add no-op --no-split option support [PR28144] X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=96a7037cd8573cf065aa6b12baca68696f96d9ca;p=binutils-gdb.git 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 --git a/etc/texi2pod.pl b/etc/texi2pod.pl index 11f70d156be..dcf2b437640 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 {