summaryrefslogtreecommitdiff
path: root/build/special.mk
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2006-06-29 10:40:43 +0000
committerJoe Orton <jorton@apache.org>2006-06-29 10:40:43 +0000
commit8f7ed1288da1104d1f73418204f3677d4d36c6e4 (patch)
tree6c8ad501721f18b140fe359a0ce11fee6290df23 /build/special.mk
parent6a038da843992f20d609dfd3200d77fd24e91d84 (diff)
downloadhttpd-8f7ed1288da1104d1f73418204f3677d4d36c6e4.tar.gz
* build/special.mk (install-modules-yes): Require that the DSOs are
built before trying to install them; fixes "make -j2 install" from a module directory. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@417993 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 06bc16a43d..63dc40f3e0 100644
--- a/build/special.mk
+++ b/build/special.mk
@@ -25,7 +25,7 @@ INSTALL_TARGETS = install-modules-$(INSTALL_DSO)
include $(top_builddir)/build/rules.mk
-install-modules-yes:
+install-modules-yes: $(SHARED_TARGETS)
@$(MKINSTALLDIRS) $(DESTDIR)$(libexecdir)
@list='$(shared)'; for i in $$list; do \
$(top_srcdir)/build/instdso.sh SH_LIBTOOL='$(SH_LIBTOOL)' $$i $(DESTDIR)$(libexecdir); \