]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Kbuild: Makefile.modbuiltin: include auto.conf and tristate.conf mandatory
authorDirk Gouders <dirk@gouders.net>
Thu, 2 Aug 2018 13:47:08 +0000 (15:47 +0200)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 2 Aug 2018 15:47:00 +0000 (00:47 +0900)
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>
scripts/Makefile.modbuiltin

index 40867a41615ba812987100133793183e6f82a1d5..a072a4267746513c04d05688ac1535f12a687bbc 100644 (file)
@@ -8,10 +8,10 @@ src := $(obj)
 PHONY := __modbuiltin
 __modbuiltin:
 
--include include/config/auto.conf
+include include/config/auto.conf
 # tristate.conf sets tristate variables to uppercase 'Y' or 'M'
 # That way, we get the list of built-in modules in obj-Y
--include include/config/tristate.conf
+include include/config/tristate.conf
 
 include scripts/Kbuild.include