From: Masahiro Yamada Date: Wed, 31 Mar 2021 13:38:02 +0000 (+0900) Subject: kbuild: remove unneeded mkdir for external modules_install X-Git-Tag: accepted/tizen/unified/20230118.172025~7334^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b97ec0e9cfd5995f41b9726c88566a31f4625cc;p=platform%2Fkernel%2Flinux-rpi.git kbuild: remove unneeded mkdir for external modules_install scripts/Makefile.modinst creates directories as needed. Signed-off-by: Masahiro Yamada --- diff --git a/Makefile b/Makefile index ed8bd81..0e06db5 100644 --- a/Makefile +++ b/Makefile @@ -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