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.
This commit is contained in:
parent
c0d69d6967
commit
784020ca76
|
@ -59,6 +59,8 @@ while ($_ = shift) {
|
||||||
$flag = shift;
|
$flag = shift;
|
||||||
}
|
}
|
||||||
push (@ipath, $flag);
|
push (@ipath, $flag);
|
||||||
|
} elsif (/^--no-split$/) {
|
||||||
|
# ignore option for makeinfo compatibility
|
||||||
} elsif (/^-/) {
|
} elsif (/^-/) {
|
||||||
usage();
|
usage();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue