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

Kbuild: Makefile.modbuiltin: include auto.conf and tristate.conf mandatory

The files auto.conf and tristate.conf are mandatory for building
modules.builtin files, therefore include them as such.

Usually, the top-level Makefile ensures that those files exist but we
want to make sure we get noticed if they are missing for whatever
reason.

Signed-off-by: Dirk Gouders <dirk@gouders.net>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

authored by

Dirk Gouders and committed by
Masahiro Yamada
b5cdca73 2063945f

+2 -2
+2 -2
scripts/Makefile.modbuiltin
··· 8 8 PHONY := __modbuiltin 9 9 __modbuiltin: 10 10 11 - -include include/config/auto.conf 11 + include include/config/auto.conf 12 12 # tristate.conf sets tristate variables to uppercase 'Y' or 'M' 13 13 # That way, we get the list of built-in modules in obj-Y 14 - -include include/config/tristate.conf 14 + include include/config/tristate.conf 15 15 16 16 include scripts/Kbuild.include 17 17