kbuild: fix Kconfig prompt of CONFIG_HEADERS_CHECK

Prior to commit 257edce66d ("kbuild: exploit parallel building for
CONFIG_HEADERS_CHECK"), the sanity check of exported headers was done
as a side-effect of build rule of vmlinux.

That commit is good, but I missed to update the prompt of the Kconfig
entry. For the sake of preciseness, lets' say "when building 'all'".

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada 2019-06-04 19:13:58 +09:00
parent 7a739ce51d
commit c6509a24d6
1 changed files with 3 additions and 3 deletions

View File

@ -306,11 +306,11 @@ config DEBUG_FS
If unsure, say N. If unsure, say N.
config HEADERS_CHECK config HEADERS_CHECK
bool "Run 'make headers_check' when building vmlinux" bool "Run sanity checks on uapi headers when building 'all'"
depends on !UML depends on !UML
help help
This option will extract the user-visible kernel headers whenever This option will extract the user-visible kernel headers when
building the kernel, and will run basic sanity checks on them to building the 'all' target, and will run basic sanity checks on them to
ensure that exported files do not attempt to include files which ensure that exported files do not attempt to include files which
were not exported, etc. were not exported, etc.