From: Masahiro Yamada Date: Tue, 2 Mar 2021 14:26:14 +0000 (+0900) Subject: kbuild: show warning if 'make headers_check' is used X-Git-Tag: accepted/tizen/unified/20230118.172025~7334^2~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=609bbb4de4f85b7ef45d81a88e6b7dfe3bf5ccea;p=platform%2Fkernel%2Flinux-rpi.git kbuild: show warning if 'make headers_check' is used Since commit 7ecaf069da52 ("kbuild: move headers_check rule to usr/include/Makefile"), 'make headers_check' is no-op. This stub target is remaining here in case some scripts still invoke it. In order to prompt people to remove stale code, show a noisy warning message if used. The stub will be really removed after the Linux 5.15 release. Signed-off-by: Masahiro Yamada --- diff --git a/Makefile b/Makefile index d798234..80c8215 100644 --- a/Makefile +++ b/Makefile @@ -1358,7 +1358,11 @@ headers: $(version_h) scripts_unifdef uapi-asm-generic archheaders archscripts # Deprecated. It is no-op now. PHONY += headers_check headers_check: - @: + @echo >&2 "=================== WARNING ===================" + @echo >&2 "Since Linux 5.5, 'make headers_check' is no-op," + @echo >&2 "and will be removed after Linux 5.15 release." + @echo >&2 "Please remove headers_check from your scripts." + @echo >&2 "===============================================" ifdef CONFIG_HEADERS_INSTALL prepare: headers