diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-10-25 14:52:32 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-11-11 14:10:01 +0300 |
commit | a64c0440dda1fff1fb5723140828983d0ca821d4 (patch) | |
tree | 10faa3c2e7f4040d66fbe0168c2f6829fcd53952 /Documentation | |
parent | 3c96bdd0ebfaf750a91016433adc7a6ee711a519 (diff) | |
download | linux-a64c0440dda1fff1fb5723140828983d0ca821d4.tar.xz |
kbuild: Wrap long "make help" text lines
Some "make help" text lines extend beyond 80 characters.
Wrap them before an opening parenthesis, or before 80 characters.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index e145e4db508b..0c5185187dad 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -128,8 +128,10 @@ dochelp: @echo ' pdfdocs - PDF' @echo ' epubdocs - EPUB' @echo ' xmldocs - XML' - @echo ' linkcheckdocs - check for broken external links (will connect to external hosts)' - @echo ' refcheckdocs - check for references to non-existing files under Documentation' + @echo ' linkcheckdocs - check for broken external links' + @echo ' (will connect to external hosts)' + @echo ' refcheckdocs - check for references to non-existing files under' + @echo ' Documentation' @echo ' cleandocs - clean all generated files' @echo @echo ' make SPHINXDIRS="s1 s2" [target] Generate only docs of folder s1, s2' |