From: Ryan Bloom Date: Thu, 5 Oct 2000 03:44:22 +0000 (+0000) Subject: If mod_so is compiled into the server, we need to create libexec, even X-Git-Tag: APACHE_2_0_ALPHA_7~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bee0cc4f31cbe35ee394dfb2accf31ffac34b5a9;p=apache If mod_so is compiled into the server, we need to create libexec, even if there are no shared modules compiled. This is in keeping with what we did with Apache 1.3, and it allows APXS to work, even if there were no shared modules installed initially. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86396 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/special.mk b/build/special.mk index cabb54fd72..27a0d864ac 100644 --- a/build/special.mk +++ b/build/special.mk @@ -62,7 +62,7 @@ install_targets = install-modules install-modules: @shared='$(shared)'; \ - if test -n "$$shared"; then \ + if [ "x`echo $(static) | grep 'mod_so'`" != "x" ]; then \ $(MKINSTALLDIRS) $(libexecdir); \ for i in $$shared; do \ $(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \