From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] mk: sort config templates listing Date: Fri, 2 May 2014 15:28:02 +0200 Message-ID: <1399037282-5157-1-git-send-email-thomas.monjalon@6wind.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" The config templates can be seen with "make showconfigs", "make config" or "make help". It's easier to read if it's sorted. Signed-off-by: Thomas Monjalon --- mk/rte.sdkconfig.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkconfig.mk b/mk/rte.sdkconfig.mk index b4e45f2..a96beeb 100644 --- a/mk/rte.sdkconfig.mk +++ b/mk/rte.sdkconfig.mk @@ -35,9 +35,9 @@ showversion: $(RTE_SRCDIR)/lib/librte_eal/common/include/rte_version.h | \ tr '\n' '.' | sed -r 's,\.([0-9]+)\.$$,r\1\n,' -INSTALL_CONFIGS := $(filter-out %~,\ +INSTALL_CONFIGS := $(sort $(filter-out %~,\ $(patsubst $(RTE_SRCDIR)/config/defconfig_%,%,\ - $(wildcard $(RTE_SRCDIR)/config/defconfig_*))) + $(wildcard $(RTE_SRCDIR)/config/defconfig_*)))) INSTALL_TARGETS := $(addsuffix _install,$(INSTALL_CONFIGS)) .PHONY: showconfigs -- 1.9.2