diff options
author | Jeff Trawick <trawick@apache.org> | 2001-12-07 18:48:36 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-12-07 18:48:36 +0100 |
commit | 210d01fd9516ebbce2e6330d9b2df30ff2e30ca2 (patch) | |
tree | b28eb5c91114cf9758fbca21cd2e25db7def829a /build/special.mk | |
parent | change binbuild.sh to use --enable-mods-shared=most. This adds 13 modules (diff) | |
download | apache2-210d01fd9516ebbce2e6330d9b2df30ff2e30ca2.tar.xz apache2-210d01fd9516ebbce2e6330d9b2df30ff2e30ca2.zip |
Do special install processing for Apache DSO modules on HP-UX, Tru64,
and AIX so that we get mod_foo.so installed instead of the stuff that
libtool installed.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92370 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/special.mk')
-rw-r--r-- | build/special.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/special.mk b/build/special.mk index cb3e8d1662..5be54a7c19 100644 --- a/build/special.mk +++ b/build/special.mk @@ -68,7 +68,7 @@ install-modules: if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \ list='$(shared)'; \ for i in $$list; do \ - $(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \ + $(top_builddir)/build/instdso.sh SH_LIBTOOL='$(SH_LIBTOOL)' $$i $(libexecdir); \ done; \ fi |