From 47eddab27f901a90a71ed1c43c6525465f7c0502 Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 26 May 2023 14:58:45 +0100 Subject: [PATCH] Fix `hwconfig-list` output formatting (#2645) --- Sming/Components/Storage/component.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sming/Components/Storage/component.mk b/Sming/Components/Storage/component.mk index 13b96ee8f1..eb711a1054 100644 --- a/Sming/Components/Storage/component.mk +++ b/Sming/Components/Storage/component.mk @@ -112,7 +112,7 @@ endif .PHONY: hwconfig-list hwconfig-list: ##List available hardware configurations - @echo "Available configurations: $(foreach c,$(ALL_HWCONFIG),\n $(if $(subst $c,,$(HWCONFIG)), ,*) $(shell printf "%-25s" "$c") $(filter %/$c.hw,$(ALL_HWCONFIG_PATHS)))" + @printf "Available configurations: $(foreach c,$(ALL_HWCONFIG),\n $(if $(subst $c,,$(HWCONFIG)), ,*) $(shell printf "%-25s" "$c") $(filter %/$c.hw,$(ALL_HWCONFIG_PATHS)))" @echo .PHONY: hwconfig-options