From 86ceff2ca686fc56f2e66dce6c22908587522bb6 Mon Sep 17 00:00:00 2001 From: mikee47 Date: Fri, 19 May 2023 10:41:44 +0100 Subject: [PATCH] Fix `hwconfig-list` output formatting --- 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