Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+1 -2
+1 -2
Makefile
··· 1431 1431 # Build modules 1432 1432 # 1433 1433 1434 - PHONY += modules 1435 - modules: $(if $(KBUILD_BUILTIN),vmlinux) modules_check modules_prepare 1434 + modules: $(if $(KBUILD_BUILTIN),vmlinux) modules_prepare 1436 1435 1437 1436 cmd_modules_order = cat $(real-prereqs) > $@ 1438 1437