diff options
author | 2025-05-11 12:55:19 +0900 | |
---|---|---|
committer | 2025-05-12 15:04:09 +0900 | |
commit | f0e4b333cf67b3d5da56bd01a125f45c102f7d27 (patch) | |
tree | 10656423b081a9c1f9c667781691672ea913bf40 | |
parent | init: remove unused CONFIG_CC_CAN_LINK_STATIC (diff) | |
download | wireguard-linux-f0e4b333cf67b3d5da56bd01a125f45c102f7d27.tar.xz wireguard-linux-f0e4b333cf67b3d5da56bd01a125f45c102f7d27.zip |
kbuild: fix dependency on sorttable
Commit ac4f06789b4f ("kbuild: Create intermediate vmlinux build with
relocations preserved") missed replacing one occurrence of "vmlinux"
that was added during the same development cycle.
Fixes: ac4f06789b4f ("kbuild: Create intermediate vmlinux build with relocations preserved")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
-rw-r--r-- | scripts/Makefile.vmlinux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.vmlinux b/scripts/Makefile.vmlinux index 85d60d986401..0c4bb1274a08 100644 --- a/scripts/Makefile.vmlinux +++ b/scripts/Makefile.vmlinux @@ -94,7 +94,7 @@ $(vmlinux-final): $(RESOLVE_BTFIDS) endif ifdef CONFIG_BUILDTIME_TABLE_SORT -vmlinux: scripts/sorttable +$(vmlinux-final): scripts/sorttable endif # module.builtin.ranges |