From 764f65c8b442697dfd46ee7a4c97971b28eb887b Mon Sep 17 00:00:00 2001 From: Cesar Soares Lucas Date: Fri, 1 Sep 2023 06:06:35 +0000 Subject: [PATCH] 8315278: Patch 'print-targets' target to print targets separated by new line Reviewed-by: erikj, ksakata --- make/Main.gmk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make/Main.gmk b/make/Main.gmk index 506634126fb..22efccb8d7e 100644 --- a/make/Main.gmk +++ b/make/Main.gmk @@ -1431,13 +1431,13 @@ ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS) # are internal only, to support Init.gmk. print-targets: - @$(ECHO) $(sort $(ALL_TARGETS)) + $(info $(subst $(SPACE),$(NEWLINE),$(sort $(ALL_TARGETS)))) print-modules: - @$(ECHO) $(sort $(ALL_MODULES)) + $(info $(subst $(SPACE),$(NEWLINE),$(sort $(ALL_MODULES)))) print-tests: - @$(ECHO) $(sort $(ALL_NAMED_TESTS)) + $(info $(subst $(SPACE),$(NEWLINE),$(sort $(ALL_NAMED_TESTS)))) create-main-targets-include: $(call LogInfo, Generating main target list)