mirror of
https://github.com/nginx/nginx.git
synced 2026-06-09 08:57:35 -04:00
Dynamic modules: make sure to call config.make for dynamic addons.
This commit is contained in:
parent
ceccebbb31
commit
7a10604ab6
1 changed files with 2 additions and 2 deletions
|
|
@ -437,9 +437,9 @@ fi
|
|||
|
||||
# the addons config.make
|
||||
|
||||
if test -n "$NGX_ADDONS"; then
|
||||
if test -n "$NGX_ADDONS$DYNAMIC_ADDONS"; then
|
||||
|
||||
for ngx_addon_dir in $NGX_ADDONS
|
||||
for ngx_addon_dir in $NGX_ADDONS $DYNAMIC_ADDONS
|
||||
do
|
||||
if test -f $ngx_addon_dir/config.make; then
|
||||
. $ngx_addon_dir/config.make
|
||||
|
|
|
|||
Loading…
Reference in a new issue