Skip to content
Snippets Groups Projects
Commit a1e7b7bb authored by Konstantin Khlebnikov's avatar Konstantin Khlebnikov Committed by Michal Marek
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -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:/=)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment