[PATCH] kbuild: single-quote the format string of printf

From: Masahiro Yamada
Date: Tue Aug 29 2023 - 07:36:34 EST


Use single-quotes to avoid escape sequences (\\n).

Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx>
---

Makefile | 8 ++++----
arch/powerpc/Makefile | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 87a9eef3fb4b..d09600f7a036 100644
--- a/Makefile
+++ b/Makefile
@@ -1643,12 +1643,12 @@ help:
@echo ''
@$(if $(boards), \
$(foreach b, $(boards), \
- printf " %-27s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
+ printf ' %-27s - Build for %s\n' $(b) $(subst _defconfig,,$(b));) \
echo '')
@$(if $(board-dirs), \
$(foreach b, $(board-dirs), \
- printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
- printf " %-16s - Show all of the above\\n" help-boards; \
+ printf ' %-16s - Show %s-specific targets\n' help-$(b) $(b);) \
+ printf ' %-16s - Show all of the above\n' help-boards; \
echo '')

@echo ' make V=n [targets] 1: verbose build'
@@ -1684,7 +1684,7 @@ $(help-board-dirs): help-%:
@echo 'Architecture specific targets ($(SRCARCH) $*):'
@$(if $(boards-per-dir), \
$(foreach b, $(boards-per-dir), \
- printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
+ printf ' %-24s - Build for %s\n' $*/$(b) $(subst _defconfig,,$(b));) \
echo '')


diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
index dac7ca153886..f49ac05eae20 100644
--- a/arch/powerpc/Makefile
+++ b/arch/powerpc/Makefile
@@ -353,7 +353,7 @@ define archhelp
echo ' (minus the .dts extension).'
echo
$(foreach cfg,$(generated_configs),
- printf " %-27s - Build for %s\\n" $(cfg) $(subst _defconfig,,$(cfg));)
+ printf ' %-27s - Build for %s\n' $(cfg) $(subst _defconfig,,$(cfg));)
endef

PHONY += install
--
2.39.2