Skip to content

Commit f7c8bb6

Browse files
committed
tools/nolibc: hide headers_check command by default
If V=1 is not specified the executed commands should not be printed. Hide the commands by default. Fixes: a6a054c ("tools/nolibc: add target to check header usability") Acked-by: Willy Tarreau <w@1wt.eu> Link: https://lore.kernel.org/r/20250623-nolibc-headers-silent-v1-1-f568facf014c@weissschuh.net Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
1 parent fb1cacd commit f7c8bb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/include/nolibc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ headers_standalone: headers
112112
CLANG_CROSS_FLAGS := $(subst --target=s390-linux,--target=systemz-linux,$(CLANG_CROSS_FLAGS))
113113

114114
headers_check: headers_standalone
115-
for header in $(filter-out crt.h std.h,$(all_files)); do \
115+
$(Q)for header in $(filter-out crt.h std.h,$(all_files)); do \
116116
$(CC) $(CLANG_CROSS_FLAGS) -Wall -Werror -nostdinc -fsyntax-only -x c /dev/null \
117117
-I$(or $(objtree),$(srctree))/usr/include -include $$header -include $$header || exit 1; \
118118
done

0 commit comments

Comments
 (0)