From: Justin Erenkrantz Date: Fri, 3 May 2002 21:09:05 +0000 (+0000) Subject: Fix generated httpd.conf to respect layout for LoadModule lines. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64d9bffec3e9da8d2c50e48b470498badb480be6;p=apache Fix generated httpd.conf to respect layout for LoadModule lines. PR: 8170 Submitted by: Thom May Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94921 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 9f3f5378a8..24a921185a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ Changes with Apache 2.0.37 + + *) Fix generated httpd.conf to respect layout for LoadModule lines. + PR 8170. [Thom May ] + *) Win32: During a graceful restart, threads in the new process were accessing scoreboard slots still in use by active threads in the the old process. [Bill Stoddard] diff --git a/Makefile.in b/Makefile.in index 01fabd6be7..2b5f5c593e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -57,7 +57,7 @@ install-conf: echo ""; \ fi; \ if test $$j != "^EOL^"; then \ - echo "LoadModule $${j}_module modules/mod_$${j}.so"; \ + echo "LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ fi; \ if test "x$$j" = "xssl"; then \ echo ""; \