diff -Naur httpd-2.4.29/Makefile.in httpd-2.4.29-magellan/Makefile.in --- httpd-2.4.29/Makefile.in 2017-09-19 12:15:00.000000000 +0200 +++ httpd-2.4.29-magellan/Makefile.in 2017-10-26 12:54:41.083494473 +0200 @@ -46,14 +46,14 @@ ( \ n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \ if test $$n_lm -eq 0 -o "x$(MPM_MODULES)$(DSO_MODULES)" = "x"; then \ - sed -e 's#@@ServerRoot@@#$(prefix)#g' \ + sed -e 's#@@ServerRoot@@#$(libdir)/apache2#g' \ -e 's#@@Port@@#$(PORT)#g' \ -e 's#@@SSLPort@@#$(SSLPORT)#g' \ -e '/@@LoadModule@@/d' \ < $$i; \ else \ sed -n -e '/@@LoadModule@@/q' \ - -e 's#@@ServerRoot@@#$(prefix)#g' \ + -e 's#@@ServerRoot@@#$(libdir)/apache2#g' \ -e 's#@@Port@@#$(PORT)#g' \ -e 's#@@SSLPort@@#$(SSLPORT)#g' \ -e 'p' \ @@ -97,13 +97,13 @@ echo " $${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ echo ""; \ else \ - echo "$${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ + echo "$${loading_disabled}LoadModule $${j}_module modules/mod_$${j}.so"; \ fi; \ fi; \ done; \ sed -e '1,/@@LoadModule@@/d' \ -e '/@@LoadModule@@/d' \ - -e 's#@@ServerRoot@@#$(prefix)#g' \ + -e 's#@@ServerRoot@@#$(libdir)/apache2#g' \ -e 's#@@Port@@#$(PORT)#g' \ -e 's#@@SSLPort@@#$(SSLPORT)#g' \ < $$i; \