Commit a1e7b7bb authored by Konstantin Khlebnikov's avatar Konstantin Khlebnikov Committed by Michal Marek

Makefile: sort list of defconfig targets in make help output

Without sorting this list is completely unreadable for ARCH=arm.
Signed-off-by: default avatarKonstantin Khlebnikov <k.khlebnikov@samsung.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent a29b8232
......@@ -1232,7 +1232,7 @@ rpm: include/config/kernel.release FORCE
# ---------------------------------------------------------------------------
boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
boards := $(notdir $(boards))
boards := $(sort $(notdir $(boards)))
board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
board-dirs := $(sort $(notdir $(board-dirs:/=)))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment