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
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); \