Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kbuild: uapi: rerun header tests when headers_check.pl changes

If the checks change they need to be rerun.

Add a Makefile dependency so this happens.

Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: Nicolas Schier <nsc@kernel.org>
Link: https://lore.kernel.org/r/20250813-kbuild-hdrtest-fixes-v2-1-8a7921ca3a03@linutronix.de
Signed-off-by: Nathan Chancellor <nathan@kernel.org>

authored by

Thomas Weißschuh and committed by
Nathan Chancellor
d4b7080b f7cc3cae

+1 -1
+1 -1
usr/include/Makefile
··· 85 85 $(PERL) $(src)/headers_check.pl $(obj) $<; \ 86 86 touch $@ 87 87 88 - $(obj)/%.hdrtest: $(obj)/%.h FORCE 88 + $(obj)/%.hdrtest: $(obj)/%.h $(src)/headers_check.pl FORCE 89 89 $(call if_changed_dep,hdrtest) 90 90 91 91 # Since GNU Make 4.3, $(patsubst $(obj)/%/,%,$(wildcard $(obj)/*/)) works.