summaryrefslogtreecommitdiff
path: root/build/special.mk
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-10-05 03:44:22 +0000
committerRyan Bloom <rbb@apache.org>2000-10-05 03:44:22 +0000
commitbee0cc4f31cbe35ee394dfb2accf31ffac34b5a9 (patch)
treed5d9376b9ea7caaf255fd4582c58859bc12b61cb /build/special.mk
parentbbdb1905829ea8b8ab5da91bc3c752806d6eb969 (diff)
downloadhttpd-bee0cc4f31cbe35ee394dfb2accf31ffac34b5a9.tar.gz
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
Diffstat (limited to 'build/special.mk')
-rw-r--r--build/special.mk2
1 files changed, 1 insertions, 1 deletions
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); \