summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorThomas Weißschuh <linux@weissschuh.net>2026-02-27 07:38:06 +0100
committerNicolas Schier <nsc@kernel.org>2026-03-12 12:48:08 +0100
commit510c7a57362d4620f66cf8a083363b8e20bd9778 (patch)
tree56dc13ec8694dbdc6105850793e4f931d3f4c82f /usr
parent579f103fb9c570e54c81866627efb1ea1e00a26b (diff)
kbuild: uapi: simplify libc dependency logic
The only left user of the condition inverts it. Invert the condition completely and simplify its user. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Reviewed-by: Nathan Chancellor <nathan@kernel.org> Reviewed-by: Nicolas Schier <nsc@kernel.org> Tested-by: Nicolas Schier <nsc@kernel.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://patch.msgid.link/20260227-kbuild-uapi-libc-v1-8-c17de0d19776@weissschuh.net Signed-off-by: Nicolas Schier <nsc@kernel.org>
Diffstat (limited to 'usr')
-rw-r--r--usr/include/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/include/Makefile b/usr/include/Makefile
index d352280b0e4a..845d06b63c2b 100644
--- a/usr/include/Makefile
+++ b/usr/include/Makefile
@@ -137,14 +137,14 @@ endif
always-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h' 2>/dev/null))
-target-no-libc = $(filter-out $(uses-libc), $*.h)
+target-libc = $(filter $(uses-libc), $*.h)
target-can-compile = $(filter-out $(no-header-test), $*.h)
# Include the header twice to detect missing include guard.
quiet_cmd_hdrtest = HDRTEST $<
cmd_hdrtest = \
$(CC) $(c_flags) -fsyntax-only -Werror -x c /dev/null \
- -nostdinc $(if $(target-no-libc), , -I $(srctree)/usr/dummy-include) \
+ -nostdinc $(if $(target-libc), -I $(srctree)/usr/dummy-include) \
$(if $(target-can-compile), -include $< -include $<); \
$(PERL) $(src)/headers_check.pl $(obj) $<; \
touch $@