comparison auto/make @ 6416:35487ea55cb6

Dynamic modules: make sure to call config.make for dynamic addons.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 25 Feb 2016 15:22:05 +0300
parents cfc3cfa434ec
children 39a806ccf21e
comparison
equal deleted inserted replaced
6415:107a46bde349 6416:35487ea55cb6
435 fi 435 fi
436 436
437 437
438 # the addons config.make 438 # the addons config.make
439 439
440 if test -n "$NGX_ADDONS"; then 440 if test -n "$NGX_ADDONS$DYNAMIC_ADDONS"; then
441 441
442 for ngx_addon_dir in $NGX_ADDONS 442 for ngx_addon_dir in $NGX_ADDONS $DYNAMIC_ADDONS
443 do 443 do
444 if test -f $ngx_addon_dir/config.make; then 444 if test -f $ngx_addon_dir/config.make; then
445 . $ngx_addon_dir/config.make 445 . $ngx_addon_dir/config.make
446 fi 446 fi
447 done 447 done