diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2022-09-24 11:24:25 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-09-29 00:08:18 +0300 |
commit | 4b0986590062ce12c134c00cf32b9f9b846aeff5 (patch) | |
tree | f830f32f6e672542cd7dd677118a17cf6b8d230f /arch/sparc/kernel/Makefile | |
parent | 425937381ec492d454cd4d8ba594711331128a44 (diff) | |
download | linux-4b0986590062ce12c134c00cf32b9f9b846aeff5.tar.xz |
kbuild: hide error checker logs for V=1 builds
V=1 (verbose build) shows commands executed by Make, but it may cause
misunderstanding.
For example, the following command shows the outstanding error message.
$ make V=1 INSTALL_PATH=/tmp install
test -e include/generated/autoconf.h -a -e include/config/auto.conf || ( \
echo >&2; \
echo >&2 " ERROR: Kernel configuration is invalid."; \
echo >&2 " include/generated/autoconf.h or include/config/auto.conf are missing.";\
echo >&2 " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
echo >&2 ; \
/bin/false)
unset sub_make_done; ./scripts/install.sh
It is not an error. Make just showed the recipe lines it has executed,
but people may think that 'make install' has failed.
Likewise, the combination of V=1 and O= shows confusing
"*** The source tree is not clean, please run 'make mrproper'".
Suppress such misleading logs.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
Diffstat (limited to 'arch/sparc/kernel/Makefile')
0 files changed, 0 insertions, 0 deletions