From: Brian Havard Date: Fri, 21 Dec 2001 01:47:50 +0000 (+0000) Subject: Use aplibtool to install modules on OS/2 as it contains some required magic X-Git-Tag: 2.0.30~156 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8d6b1fc9d786cedc2cf925250c0cfa9c7ea5dc5;p=apache 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 --- 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