From: Geert Uytterhoeven Date: Fri, 25 Oct 2019 11:53:05 +0000 (+0200) Subject: kbuild: Extend defconfig field size from 24 to 27 X-Git-Tag: v5.5-rc1~65^2~38 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=4234448b7073dfcd5792b5c9ad223fbe8b9520ef;p=linux-block.git kbuild: Extend defconfig field size from 24 to 27 There are 6 defconfigs with names longer than 24 characters, breaking alignment in "make help". The "winner" is "ecovec24-romimage_defconfig", counting in at 27 characters. Extend the defconfig field size to 27 to restore alignment. Don't use a larger value, to not encourage people to create even longer defconfig names. Signed-off-by: Geert Uytterhoeven Acked-by: Hans-Christian Egtvedt Signed-off-by: Masahiro Yamada --- diff --git a/Makefile b/Makefile index 6cd5af1e7fd4..8a1e1ce15672 100644 --- a/Makefile +++ b/Makefile @@ -1512,7 +1512,7 @@ help: @echo '' @$(if $(boards), \ $(foreach b, $(boards), \ - printf " %-24s - 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), \