From bee0cc4f31cbe35ee394dfb2accf31ffac34b5a9 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Thu, 5 Oct 2000 03:44:22 +0000 Subject: [PATCH] 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 --- build/special.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); \ -- 2.50.1