diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-31 22:38:02 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-25 05:21:50 +0900 |
commit | 4b97ec0e9cfd5995f41b9726c88566a31f4625cc (patch) | |
tree | 3b0795941ffb0b02ecf8367eb8faf19898122e35 /Makefile | |
parent | f3945833e436d79d9a97e776c4986af8c9cbb483 (diff) | |
download | linux-4b97ec0e9cfd5995f41b9726c88566a31f4625cc.tar.gz |
kbuild: remove unneeded mkdir for external modules_install
scripts/Makefile.modinst creates directories as needed.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1779,10 +1779,8 @@ $(MODORDER): descend PHONY += modules_install modules_install: _emodinst_ _emodinst_post -install-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra) PHONY += _emodinst_ _emodinst_: - $(Q)mkdir -p $(MODLIB)/$(install-dir) $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst PHONY += _emodinst_post |