From: Alexandre Chartre Date: Fri, 21 Nov 2025 09:53:14 +0000 (+0100) Subject: tool build: Remove annoying newline in build output X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f348a44c103aac04fc9420d993afa4ab5cf5e3e2;p=thirdparty%2Fkernel%2Flinux.git tool build: Remove annoying newline in build output Remove the newline which is printed during feature discovery when nothing else is printed. Signed-off-by: Alexandre Chartre Signed-off-by: Peter Zijlstra (Intel) Acked-by: Josh Poimboeuf Link: https://patch.msgid.link/20251121095340.464045-5-alexandre.chartre@oracle.com --- diff --git a/tools/build/Makefile.feature b/tools/build/Makefile.feature index 32bbe29fe5f6c..300a329bc581d 100644 --- a/tools/build/Makefile.feature +++ b/tools/build/Makefile.feature @@ -315,5 +315,7 @@ endef ifeq ($(FEATURE_DISPLAY_DEFERRED),) $(call feature_display_entries) - $(info ) + ifeq ($(feature_display),1) + $(info ) + endif endif