Commit a1e7b7bb1ab5bf3498eacc2d22beb56dac1d4e08

Authored by Konstantin Khlebnikov
Committed by Michal Marek
1 parent a29b82326e

Makefile: sort list of defconfig targets in make help output

Without sorting this list is completely unreadable for ARCH=arm.

Signed-off-by: Konstantin Khlebnikov <k.khlebnikov@samsung.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1232,7 +1232,7 @@
1232 1232 # ---------------------------------------------------------------------------
1233 1233  
1234 1234 boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
1235   -boards := $(notdir $(boards))
  1235 +boards := $(sort $(notdir $(boards)))
1236 1236 board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
1237 1237 board-dirs := $(sort $(notdir $(board-dirs:/=)))
1238 1238