aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantin Khlebnikov <k.khlebnikov@samsung.com>2014-10-28 17:18:20 +0400
committerMichal Marek <mmarek@suse.cz>2014-11-28 13:20:06 +0100
commita1e7b7bb1ab5bf3498eacc2d22beb56dac1d4e08 (patch)
treee113781ceb21cc759b7f414ab6fd8d68eb59316a /Makefile
parenta29b82326ed4eb5567b03c85b52c6891578d5a03 (diff)
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0032d1ca4e49..88b7fa50f619 100644
--- a/Makefile
+++ b/Makefile
@@ -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:/=)))