summaryrefslogtreecommitdiffstats
path: root/build/instdso.sh
diff options
context:
space:
mode:
authorBrian Havard <bjh@apache.org>2001-12-21 02:47:50 +0100
committerBrian Havard <bjh@apache.org>2001-12-21 02:47:50 +0100
commita8d6b1fc9d786cedc2cf925250c0cfa9c7ea5dc5 (patch)
tree35b5c28875f87abf78b0f9e7c734a448ea867043 /build/instdso.sh
parentAdd note to CHANGES about apr_sendfile fix in APR. This will likly fix several (diff)
downloadapache2-a8d6b1fc9d786cedc2cf925250c0cfa9c7ea5dc5.tar.xz
apache2-a8d6b1fc9d786cedc2cf925250c0cfa9c7ea5dc5.zip
Use aplibtool to install modules on OS/2 as it contains some required magic
to handle DLL naming restrictions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92553 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/instdso.sh')
-rwxr-xr-xbuild/instdso.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/instdso.sh b/build/instdso.sh
index fb995507d5..077647ecfd 100755
--- a/build/instdso.sh
+++ b/build/instdso.sh
@@ -43,6 +43,11 @@ case $SYS in
echo $CMD
$CMD || exit $?
;;
+ OS/2)
+ CMD="$SH_LIBTOOL --mode=install cp $DSOARCHIVE $TARGETDIR/"
+ echo $CMD
+ $CMD || exit $?
+ ;;
*)
CMD="cp .libs/$TARGET_NAME $TARGETDIR/$TARGET_NAME"
echo $CMD