diff options
author | Masahiro Yamada | 2019-06-04 12:13:58 +0200 |
---|---|---|
committer | Masahiro Yamada | 2019-06-15 12:57:01 +0200 |
commit | c6509a24d6ba0f8560a81c032c30d169ba467b0a (patch) | |
tree | 0373d43f045529b9fe7477045c9f9c11a5737001 /lib | |
parent | kbuild: make gdb_script depend on prepare0 instead of prepare (diff) | |
download | kernel-qcow2-linux-c6509a24d6ba0f8560a81c032c30d169ba467b0a.tar.gz kernel-qcow2-linux-c6509a24d6ba0f8560a81c032c30d169ba467b0a.tar.xz kernel-qcow2-linux-c6509a24d6ba0f8560a81c032c30d169ba467b0a.zip |
kbuild: fix Kconfig prompt of CONFIG_HEADERS_CHECK
Prior to commit 257edce66d31 ("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>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index cbdfae379896..7cdcb962358c 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -306,11 +306,11 @@ config DEBUG_FS If unsure, say N. config HEADERS_CHECK - bool "Run 'make headers_check' when building vmlinux" + bool "Run sanity checks on uapi headers when building 'all'" depends on !UML help - This option will extract the user-visible kernel headers whenever - building the kernel, and will run basic sanity checks on them to + This option will extract the user-visible kernel headers when + building the 'all' target, and will run basic sanity checks on them to ensure that exported files do not attempt to include files which were not exported, etc. |