Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-01-01 18:32:54 +0300
committerJo-Philipp Wich <jo@mein.io>2018-01-01 19:10:31 +0300
commit06bb427dd91652372fb2219655804df01b0af8b3 (patch)
tree56da9abbceaa92ed45c8f148e5663120e6f71905 /luci.mk
parent4f644d9254021f385e50e6338dc35fee331792bd (diff)
luci.mk: allow specifying EXTRA_DEPENDS
Support a new varable LUCI_EXTRA_DEPENDS which can be used to pass OpenWrt EXTRA_DEPENDS to buildroot. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'luci.mk')
-rw-r--r--luci.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/luci.mk b/luci.mk
index 0b2ec4e700..cc39c0f4c8 100644
--- a/luci.mk
+++ b/luci.mk
@@ -96,6 +96,7 @@ define Package/$(PKG_NAME)
SUBMENU:=$(if $(LUCI_MENU.$(LUCI_TYPE)),$(LUCI_MENU.$(LUCI_TYPE)),$(LUCI_MENU.app))
TITLE:=$(if $(LUCI_TITLE),$(LUCI_TITLE),LuCI $(LUCI_NAME) $(LUCI_TYPE))
DEPENDS:=$(LUCI_DEPENDS)
+ $(if $(LUCI_EXTRA_DEPENDS),EXTRA_DEPENDS:=$(LUCI_EXTRA_DEPENDS))
$(if $(LUCI_PKGARCH),PKGARCH:=$(LUCI_PKGARCH))
endef