diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-10-25 13:52:32 +0200 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-11-11 20:10:01 +0900 |
commit | a64c0440dda1fff1fb5723140828983d0ca821d4 (patch) | |
tree | 10faa3c2e7f4040d66fbe0168c2f6829fcd53952 /Makefile | |
parent | 3c96bdd0ebfaf750a91016433adc7a6ee711a519 (diff) | |
download | linux-a64c0440dda1fff1fb5723140828983d0ca821d4.tar.gz linux-a64c0440dda1fff1fb5723140828983d0ca821d4.tar.bz2 linux-a64c0440dda1fff1fb5723140828983d0ca821d4.zip |
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 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1523,7 +1523,8 @@ help: @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' @echo ' make V=2 [targets] 2 => give reason for rebuild of target' @echo ' make O=dir [targets] Locate all output files in "dir", including .config' - @echo ' make C=1 [targets] Check re-compiled c source with $$CHECK (sparse by default)' + @echo ' make C=1 [targets] Check re-compiled c source with $$CHECK' + @echo ' (sparse by default)' @echo ' make C=2 [targets] Force check of all c source with $$CHECK' @echo ' make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections' @echo ' make W=n [targets] Enable extra build checks, n=1,2,3 where' |