diff options
author | Masahiro Yamada | 2018-12-11 21:01:56 +0900 |
---|---|---|
committer | Masahiro Yamada | 2018-12-17 00:33:43 +0900 |
commit | 1d467bb8a8b95caa01a240362589215739505233 (patch) | |
tree | 59cbfb83065e183e5f86f579c93e992e83fd0f01 /scripts | |
parent | 96c0a9180a1279c8ca5d9ea3096f2944828194d3 (diff) |
kbuild: handle part-of-module correctly for *.ll and *.symtypes
The single targets *.ll and *.symtypes have never been treated as
a module. Fix it.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index c09fe9099f58..0f2b5f07926b 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -94,7 +94,7 @@ endif # --------------------------------------------------------------------------- # Default is built-in, unless we know otherwise -$(foreach x, i lst o s, $(patsubst %.o,%.$(x),$(real-obj-m))): \ +$(foreach x, i ll lst o s symtypes, $(patsubst %.o,%.$(x),$(real-obj-m))): \ part-of-module := y modkern_cflags = \ |