From 7a10604ab6ce24fc4fb541480975574f42dd95ea Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Thu, 25 Feb 2016 15:22:05 +0300 Subject: [PATCH] Dynamic modules: make sure to call config.make for dynamic addons. --- auto/make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto/make b/auto/make index 560924b7d..e2e8e2983 100644 --- a/auto/make +++ b/auto/make @@ -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