diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-23 14:50:41 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-29 16:38:23 +0300 |
commit | 2429742e506a2b5939a62c629c4a46d91df0ada8 (patch) | |
tree | aeaf1a01239e5846b6f3ac84de3e0dffc19dbfb2 /Makefile | |
parent | ed79c34d3cf8539589257189bf4a08418d7f2abf (diff) | |
download | linux-2429742e506a2b5939a62c629c4a46d91df0ada8.tar.xz |
kbuild: do not run depmod for 'make modules_sign'
Commit 961ab4a3cd66 ("kbuild: merge scripts/Makefile.modsign to
scripts/Makefile.modinst") started to run depmod at the end of
'make modules_sign'.
Move the depmod rule to scripts/Makefile.modinst and run it only when
$(modules_sign_only) is empty.
Fixes: 961ab4a3cd66 ("kbuild: merge scripts/Makefile.modsign to scripts/Makefile.modinst")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1877,7 +1877,9 @@ quiet_cmd_depmod = DEPMOD $(MODLIB) modules_install: $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst +ifndef modules_sign_only $(call cmd,depmod) +endif else # CONFIG_MODULES |