From: Florian Eckert Date: Wed, 2 Aug 2017 14:45:26 +0000 (+0200) Subject: luci.mk: sort languages in lexical order X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=713d463248773f4c0d8fee1d9c2b8dc0ff0de32c luci.mk: sort languages in lexical order sorting language in .config by lexical order Signed-off-by: Florian Eckert --- diff --git a/luci.mk b/luci.mk index 1ddb73d49..0b2ec4e70 100644 --- a/luci.mk +++ b/luci.mk @@ -7,7 +7,7 @@ LUCI_NAME?=$(notdir ${CURDIR}) LUCI_TYPE?=$(word 2,$(subst -, ,$(LUCI_NAME))) LUCI_BASENAME?=$(patsubst luci-$(LUCI_TYPE)-%,%,$(LUCI_NAME)) -LUCI_LANGUAGES:=$(filter-out templates,$(notdir $(wildcard ${CURDIR}/po/*))) +LUCI_LANGUAGES:=$(sort $(filter-out templates,$(notdir $(wildcard ${CURDIR}/po/*)))) LUCI_DEFAULTS:=$(notdir $(wildcard ${CURDIR}/root/etc/uci-defaults/*)) LUCI_PKGARCH?=$(if $(realpath src/Makefile),,all)