diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-10-03 16:58:24 +0900 |
---|---|---|
committer | Jessica Yu <jeyu@kernel.org> | 2019-10-07 18:25:13 +0200 |
commit | d85103ac78a6d8573b21348b36f4cca2e1839a31 (patch) | |
tree | 1e1c25c1a7619db5f463736b6ede0e939d5b7a83 /Makefile | |
parent | fa6643cdc5cd726b10d30eec45ff8dca267de735 (diff) | |
download | linux-d85103ac78a6d8573b21348b36f4cca2e1839a31.tar.gz linux-d85103ac78a6d8573b21348b36f4cca2e1839a31.tar.bz2 linux-d85103ac78a6d8573b21348b36f4cca2e1839a31.zip |
kbuild: fix build error of 'make nsdeps' in clean tree
Running 'make nsdeps' in a clean source tree fails as follows:
$ make -s clean; make -s defconfig; make nsdeps
[ snip ]
awk: fatal: cannot open file `init/modules.order' for reading (No such file or directory)
make: *** [Makefile;1307: modules.order] Error 2
make: *** Deleting file 'modules.order'
make: *** Waiting for unfinished jobs....
The cause of the error is 'make nsdeps' does not build modules at all.
Set KBUILD_MODULES to fix it.
Reviewed-by: Matthias Maennich <maennich@google.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -616,7 +616,7 @@ endif # in addition to whatever we do anyway. # Just "make" or "make all" shall build modules as well -ifneq ($(filter all _all modules,$(MAKECMDGOALS)),) +ifneq ($(filter all _all modules nsdeps,$(MAKECMDGOALS)),) KBUILD_MODULES := 1 endif |