summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAlexandre Chartre <alexandre.chartre@oracle.com>2025-11-21 10:53:14 +0100
committerPeter Zijlstra <peterz@infradead.org>2025-11-21 15:30:07 +0100
commitf348a44c103aac04fc9420d993afa4ab5cf5e3e2 (patch)
treeeee6420a47c222271056cd4806db61cd614924e8 /tools
parent59953303827eceb06d486ba66cc0d71f55ded8ec (diff)
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 <alexandre.chartre@oracle.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Acked-by: Josh Poimboeuf <jpoimboe@kernel.org> Link: https://patch.msgid.link/20251121095340.464045-5-alexandre.chartre@oracle.com
Diffstat (limited to 'tools')
-rw-r--r--tools/build/Makefile.feature4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build/Makefile.feature b/tools/build/Makefile.feature
index 32bbe29fe5f6..300a329bc581 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