klibc-bot for Greg Thelen
2026-Feb-03 21:30 UTC
[klibc] [klibc:master] remove unneeded syscalls.mk dependencies
Commit-ID: f34399e4f0ec35332b47e68f0ee430ed02ceea3c
Gitweb:
http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=f34399e4f0ec35332b47e68f0ee430ed02ceea3c
Author: Greg Thelen <gthelen at google.com>
AuthorDate: Sat, 31 Jan 2026 17:15:28 -0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Tue, 3 Feb 2026 16:59:13 +0100
[klibc] remove unneeded syscalls.mk dependencies
The syscalls.mk build rule (syscalls.pl pass 2):
- Generates .S stub files. It does not read them.
- Does not read syscommon.h.
So remove the unneeded dependencies from Kbuild. No behavioral
change. This is just a cleanup.
Fixes: f2baaf24acdc ("Add missing kbuild files")
Signed-off-by: Greg Thelen <gthelen at google.com>
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
---
usr/klibc/syscalls/Kbuild | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/usr/klibc/syscalls/Kbuild b/usr/klibc/syscalls/Kbuild
index 3f567989..9d2d81b1 100644
--- a/usr/klibc/syscalls/Kbuild
+++ b/usr/klibc/syscalls/Kbuild
@@ -91,9 +91,7 @@ quiet_cmd_syscalls = GEN $@
$(obj)/syscalls.mk: $(srctree)/$(KLIBCSRC)/syscalls.pl $(obj)/SYSCALLS.i \
$(srctree)/$(KLIBCSRC)/arch/$(KLIBCARCHDIR)/sysstub.ph \
- $(call objectify, $(syscall-objs:.o=.S)) \
- $(src)/syscommon.h $(obj)/syscalls.nrs \
- $(obj)/typesize.bin FORCE
+ $(obj)/syscalls.nrs $(obj)/typesize.bin FORCE
$(call if_changed,syscalls)
PHONY += FORCE