diff options
| author | Masahiro Yamada <masahiroy@kernel.org> | 2022-08-28 11:39:49 +0900 | 
|---|---|---|
| committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-09-29 04:40:15 +0900 | 
| commit | f75a03340c2c2eea772e4d59412135021afea493 (patch) | |
| tree | b881f9461914486d4a076df679e4b871181db1e6 /Makefile | |
| parent | e30d448754284d6c7580b8f330e257e9801bec76 (diff) | |
| download | linux-f75a03340c2c2eea772e4d59412135021afea493.tar.bz2 | |
kbuild: remove duplicated dependency between modules and modules_check
The dependency, "modules: modules_check" is specified twice.
Commit 1a998be620a1 ("kbuild: check module name conflict for external
modules as well") missed to clean it up.
'PHONY += modules' also appears twice.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -1431,8 +1431,7 @@ endif  # Build modules  # -PHONY += modules -modules: $(if $(KBUILD_BUILTIN),vmlinux) modules_check modules_prepare +modules: $(if $(KBUILD_BUILTIN),vmlinux) modules_prepare  cmd_modules_order = cat $(real-prereqs) > $@ |