From: Andrii Nakryiko Date: Wed, 18 Dec 2019 22:17:07 +0000 (-0800) Subject: bpftool: Work-around rst2man conversion bug X-Git-Tag: v5.6-rc1~151^2~199^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dacce6412e09b5dce19514e2c4e2a8aab0eb217f;p=thirdparty%2Fkernel%2Fstable.git bpftool: Work-around rst2man conversion bug Work-around what appears to be a bug in rst2man convertion tool, used to create man pages out of reStructureText-formatted documents. If text line starts with dot, rst2man will put it in resulting man file verbatim. This seems to cause man tool to interpret it as a directive/command (e.g., `.bs`), and subsequently not render entire line because it's unrecognized one. Enclose '.xxx' words in extra formatting to work around. Fixes: cb21ac588546 ("bpftool: Add gen subcommand manpage") Reported-by: Alexei Starovoitov Signed-off-by: Andrii Nakryiko Signed-off-by: Alexei Starovoitov Acked-by: Yonghong Song