Skip to content

Commit a1e7b7b

Browse files
Konstantin Khlebnikovmichal42
authored andcommitted
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 <[email protected]> Signed-off-by: Michal Marek <[email protected]>
1 parent a29b823 commit a1e7b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ rpm: include/config/kernel.release FORCE
12321232
# ---------------------------------------------------------------------------
12331233

12341234
boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
1235-
boards := $(notdir $(boards))
1235+
boards := $(sort $(notdir $(boards)))
12361236
board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
12371237
board-dirs := $(sort $(notdir $(board-dirs:/=)))
12381238

0 commit comments

Comments
 (0)