diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-31 15:13:58 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-14 01:10:42 +0900 |
commit | f6545bec969358eace40419aff26a2a236e0b813 (patch) | |
tree | 75b13cdad212c022e3824bb4954c7fd39fa29216 /scripts/Makefile.modpost | |
parent | 4b950bb9ac0c7246dcf75060040577c3de60c166 (diff) | |
download | linux-next-f6545bec969358eace40419aff26a2a236e0b813.tar.gz |
kbuild: add [M] marker for build log of *.mod.o
This builds module objects, so [M] makes sense.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/Makefile.modpost')
-rw-r--r-- | scripts/Makefile.modpost | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index e003350bc473..bf15818f6947 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost @@ -110,7 +110,7 @@ $(modules:.ko=.mod.c): modules-modpost # modname is set to make c_flags define KBUILD_MODNAME modname = $(notdir $(@:.mod.o=)) -quiet_cmd_cc_o_c = CC $@ +quiet_cmd_cc_o_c = CC [M] $@ cmd_cc_o_c = $(CC) $(c_flags) $(KBUILD_CFLAGS_MODULE) $(CFLAGS_MODULE) \ -c -o $@ $< |