diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-23 20:50:42 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-29 22:38:23 +0900 |
commit | eb931e12194b69b59e6badb06cf1b53e6106ccee (patch) | |
tree | f195a4d31a128d194b62bc91fe9df129b3b6828a /Makefile | |
parent | 2429742e506a2b5939a62c629c4a46d91df0ada8 (diff) |
kbuild: add modules_sign to no-{compiler,sync-config}-targets
Like modules_install, modules_sign should avoid the syncconfig.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -280,8 +280,8 @@ no-dot-config-targets := $(clean-targets) \ # Installation targets should not require compiler. Unfortunately, vdso_install # is an exception where build artifacts may be updated. This must be fixed. no-compiler-targets := $(no-dot-config-targets) install dtbs_install \ - headers_install modules_install kernelrelease image_name -no-sync-config-targets := $(no-dot-config-targets) %install kernelrelease \ + headers_install modules_install modules_sign kernelrelease image_name +no-sync-config-targets := $(no-dot-config-targets) %install modules_sign kernelrelease \ image_name single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.rsi %.s %.symtypes %/ |