Skip to content

Commit b441a83

Browse files
danielfdickinsonrobimarko
authored andcommitted
nginx: fix module depends on nginx
Closes #28587 nginx: many module recursive dependencies The solution turns out to be pretty trivial. Replace the +nginx in the module DEPENDS. This means the modules do not 'select' nginx, but the do 'depend on' nginx. So nginx is required to install the modules. This is the same approach taken with PHP8 and #28585 for Zabbix. Signed-off-by: Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>
1 parent f901d88 commit b441a83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

net/nginx/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ define Package/nginx-mod-luci
199199
SUBMENU:=Web Servers/Proxies
200200
TITLE:=Support file for Nginx
201201
URL:=http://nginx.org/
202-
DEPENDS:=+uwsgi +uwsgi-luci-support +nginx +nginx-mod-ubus
202+
DEPENDS:=nginx +uwsgi +uwsgi-luci-support +nginx-mod-ubus
203203
endef
204204

205205
define Package/nginx-mod-luci/description
@@ -402,7 +402,7 @@ endef
402402
define BuildModule
403403
define Package/nginx-mod-$(1)
404404
$(call Package/nginx/default)
405-
DEPENDS:=+nginx $(2)
405+
DEPENDS:=nginx $(2)
406406
TITLE:=Nginx $(1) module
407407
endef
408408

0 commit comments

Comments
 (0)