diff options
author | Jacob Champion <jchampion@apache.org> | 2017-01-09 20:01:58 +0100 |
---|---|---|
committer | Jacob Champion <jchampion@apache.org> | 2017-01-09 20:01:58 +0100 |
commit | fb5a4b45071d7e722a0efa54d9d29c3ab564b128 (patch) | |
tree | c2ad8f86e6bc08f4a7b75609868b7193d21c9461 /Makefile.in | |
parent | Keep this branch alive; block r1777709 after reintegrate (diff) | |
download | apache2-fb5a4b45071d7e722a0efa54d9d29c3ab564b128.tar.xz apache2-fb5a4b45071d7e722a0efa54d9d29c3ab564b128.zip |
check: search for MPM modules in the correct directory
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/trunk-test-integration@1778025 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6b396a45b7..878338d142 100644 --- a/Makefile.in +++ b/Makefile.in @@ -351,7 +351,7 @@ check-conf: have_cgid="0"; \ fi; \ for j in $(MPM_MODULES) "^EOL^"; do \ - path=$$(find "$(top_builddir)/modules" -name "mod_$$j.so"); \ + path=$$(find "$(top_builddir)/server" -name "mod_$$j.so"); \ if test $$j != "^EOL^"; then \ if echo ",$(ENABLED_MPM_MODULE),"|$(EGREP) ",$$j," > /dev/null ; then \ loading_disabled=""; \ |