diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-16 17:29:21 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-16 17:29:21 +0000 |
commit | 1c243cc3b16fc33334ad958fb3e798237ff133b8 (patch) | |
tree | 76ae105b01c3548fb5e48f28e5cf3963a45ad824 /contrib | |
parent | 1293c6ac2490801bad2a7a2cfe4049fad0326f3b (diff) |
contrib: fix dependency on luci-theme-base
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/package/luci/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 617088750..70dc7b0be 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -459,7 +459,7 @@ define theme SUBMENU:=Themes TITLE:=$(if $(2),$(2),LuCI $(1) theme) MAINTAINER:=$(if $(3),$(3),LuCI Development Team <luci@lists.subsignal.org>) - DEPENDS:=$(ifneq $(1),base,+luci-theme-base) $(4) + DEPENDS:=$(if $(filter-out base,$(1)),+luci-theme-base) $(4) $(if $(5),DEFAULT:=y if PACKAGE_luci-lib-core) endef |