Commit 5a7ed200 authored by Joe Orton's avatar Joe Orton
Browse files

* 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
parent 784e9497
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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); \