diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-10-18 18:19:47 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-10-28 15:10:08 +0300 |
commit | 7f6d8f7e43fb516f060cf71672a922031aa5faa9 (patch) | |
tree | 2e350ad484991bdb1ec73c4376a9f05daf7dc141 /arch/powerpc | |
parent | 9d361173edc4f8c25440f6db3ab46f5ab7c107cf (diff) | |
download | linux-7f6d8f7e43fb516f060cf71672a922031aa5faa9.tar.xz |
kbuild: remove ARCH_POSTLINK from module builds
The '%.ko' rule in arch/*/Makefile.postlink does nothing but call the
'true' command.
Remove the unneeded code.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <n.schier@avm.de>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/Makefile.postlink | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/powerpc/Makefile.postlink b/arch/powerpc/Makefile.postlink index 1f860b3c9bec..ae5a4256b03d 100644 --- a/arch/powerpc/Makefile.postlink +++ b/arch/powerpc/Makefile.postlink @@ -35,9 +35,6 @@ ifdef CONFIG_RELOCATABLE $(call if_changed,relocs_check) endif -%.ko: FORCE - @true - clean: rm -f .tmp_symbols.txt |