Commit 955ab0e2 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

Get "make install" with DSOs to work on AIX and Solaris. A recent

change by me to get "make install" to work at all on Tru64 caused this
problem.

This change has been tested with and without DSOs on AIX, Tru64,
Solaris 8 (UltraSparc), and RedHat 6.0.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87109 13f79535-47bb-0310-9956-ffa450edef68
parent 0b93d714
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -61,9 +61,10 @@ targets = $(static) $(shared)
install_targets = install-modules

install-modules:
	-@has_mod_so=`echo $(static) | grep 'mod_so'`
	@shared='$(shared)'; \
	if [ "x$(has_mod_so)" != "x" ]; then \
	static='$(static)'; \
	has_mod_so=`echo $$static|sed 's/^.*mod_so.*$$/has_mod_so/'`; \
	if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \
		$(MKINSTALLDIRS) $(libexecdir); \
		for i in $$shared; do \
			$(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \