diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-01-13 16:30:17 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-01-16 01:18:35 +0900 |
commit | 9c9aa8fdf306cd7329e0a68bbcbe2f71b397dac1 (patch) | |
tree | ed04962422b2aaecfe4dc755a7b940a77e24ee36 | |
parent | 88fe89a47153facd8cb2d06d5c8727f7224c43c2 (diff) | |
download | linux-9c9aa8fdf306cd7329e0a68bbcbe2f71b397dac1.tar.bz2 |
kbuild: remove 'Building modules, stage 2.' log
This log is displayed every time modules are built, but it is not
so important.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | scripts/Makefile.modpost | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index 69897d5d3a70..b4d3f2d122ac 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost @@ -90,7 +90,6 @@ quiet_cmd_modpost = MODPOST $(words $(modules)) modules cmd_modpost = sed 's/ko$$/o/' $(MODORDER) | $(MODPOST) __modpost: - @$(kecho) ' Building modules, stage 2.' $(call cmd,modpost) ifneq ($(KBUILD_MODPOST_NOFINAL),1) $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modfinal |