Skip to content

Commit

Permalink
Makefile: sort list of defconfig targets in make help output
Browse files Browse the repository at this point in the history
Without sorting this list is completely unreadable for ARCH=arm.

Signed-off-by: Konstantin Khlebnikov <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
Konstantin Khlebnikov authored and michal42 committed Nov 28, 2014
1 parent a29b823 commit a1e7b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:/=)))

Expand Down

0 comments on commit a1e7b7b

Please sign in to comment.