diff options
author | Masahiro Yamada | 2024-01-20 17:32:55 +0900 |
---|---|---|
committer | Masahiro Yamada | 2024-01-31 23:24:27 +0900 |
commit | 89876175c8c83c35cf0cc8e21b7460dfed7b118a (patch) | |
tree | e0f7080f48cdcf58124ad5453fa3c2fc3df4bcf4 /Makefile | |
parent | 397586506c3da005b9333ce5947ad01e8018a3be (diff) |
kbuild: fix W= flags in the help message
W=c and W=e are supported.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1662,7 +1662,7 @@ help: @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' + @echo ' make W=n [targets] Enable extra build checks, n=1,2,3,c,e where' @echo ' 1: warnings which may be relevant and do not occur too often' @echo ' 2: warnings which occur quite often but may still be relevant' @echo ' 3: more obscure warnings, can most likely be ignored' |