]> granicus.if.org Git - apache/commitdiff
Use aplibtool to install modules on OS/2 as it contains some required magic
authorBrian Havard <bjh@apache.org>
Fri, 21 Dec 2001 01:47:50 +0000 (01:47 +0000)
committerBrian Havard <bjh@apache.org>
Fri, 21 Dec 2001 01:47:50 +0000 (01:47 +0000)
to handle DLL naming restrictions.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92553 13f79535-47bb-0310-9956-ffa450edef68

build/instdso.sh

index fb995507d5a53fb54d142914d34160766d29f7cd..077647ecfdc92d54cf0fe0cd3441604aac95840f 100755 (executable)
@@ -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