diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-31 22:38:07 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-07 22:13:22 +0900 |
commit | f3fdc209ec47e5a1e073b1086d387e417795c523 (patch) | |
tree | 75591c0c836b8458b32a2c00d2d0bfaf6d2506ed /Makefile | |
parent | b6b4cb69935644726d982a69aafee962baa089ca (diff) | |
download | linux-next-f3fdc209ec47e5a1e073b1086d387e417795c523.tar.gz |
kbuild: refactor scripts/Makefile.modinst
scripts/Makefile.modinst is ugly and weird in multiple ways; it
specifies real files $(modules) as phony, makes directory manipulation
needlessly too complicated.
Clean up the Makefile code, and show the full path of installed modules
in the log.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1141,7 +1141,7 @@ endif # CONFIG_BPF PHONY += prepare0 -extmod_prefix = $(if $(KBUILD_EXTMOD),$(KBUILD_EXTMOD)/) +export extmod_prefix = $(if $(KBUILD_EXTMOD),$(KBUILD_EXTMOD)/) export MODORDER := $(extmod_prefix)modules.order export MODULES_NSDEPS := $(extmod_prefix)modules.nsdeps |