Skip to content
Snippets Groups Projects
Commit c1ea04d8 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

usr/include: replace extra-y with always-y


extra-y is not run for 'make modules'. The header compile test should
be executed irrespective of the build target. always-y is a better fit.

Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent f44b645f
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ endif
# asm-generic/*.h is used by asm/*.h, and should not be included directly
no-header-test += asm-generic/%
extra-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h' 2>/dev/null))
always-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h' 2>/dev/null))
# Include the header twice to detect missing include guard.
quiet_cmd_hdrtest = HDRTEST $<
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment