diff options
author | Dirk Gouders <dirk@gouders.net> | 2018-08-02 09:47:08 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-02 11:47:00 -0400 |
commit | b5cdca7361d083638dc7f422fe8e1ae77860f6a6 (patch) | |
tree | 8d0846a5114a5a31517921dbba74acf44b129dea | |
parent | 2063945fdc3d4c0ac8f9319d942eda720d02aabe (diff) |
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>
-rw-r--r-- | scripts/Makefile.modbuiltin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile.modbuiltin b/scripts/Makefile.modbuiltin index 40867a41615b..a072a4267746 100644 --- a/scripts/Makefile.modbuiltin +++ b/scripts/Makefile.modbuiltin | |||
@@ -8,10 +8,10 @@ src := $(obj) | |||
8 | PHONY := __modbuiltin | 8 | PHONY := __modbuiltin |
9 | __modbuiltin: | 9 | __modbuiltin: |
10 | 10 | ||
11 | -include include/config/auto.conf | 11 | include include/config/auto.conf |
12 | # tristate.conf sets tristate variables to uppercase 'Y' or 'M' | 12 | # tristate.conf sets tristate variables to uppercase 'Y' or 'M' |
13 | # That way, we get the list of built-in modules in obj-Y | 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 | include scripts/Kbuild.include | 16 | include scripts/Kbuild.include |
17 | 17 | ||