diff options
author | Konstantin Khlebnikov <k.khlebnikov@samsung.com> | 2014-10-28 09:18:20 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-11-28 07:20:06 -0500 |
commit | a1e7b7bb1ab5bf3498eacc2d22beb56dac1d4e08 (patch) | |
tree | e113781ceb21cc759b7f414ab6fd8d68eb59316a /Makefile | |
parent | a29b82326ed4eb5567b03c85b52c6891578d5a03 (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1232,7 +1232,7 @@ rpm: include/config/kernel.release FORCE | |||
1232 | # --------------------------------------------------------------------------- | 1232 | # --------------------------------------------------------------------------- |
1233 | 1233 | ||
1234 | boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig) | 1234 | boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig) |
1235 | boards := $(notdir $(boards)) | 1235 | boards := $(sort $(notdir $(boards))) |
1236 | board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig)) | 1236 | board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig)) |
1237 | board-dirs := $(sort $(notdir $(board-dirs:/=))) | 1237 | board-dirs := $(sort $(notdir $(board-dirs:/=))) |
1238 | 1238 | ||