From a8d6b1fc9d786cedc2cf925250c0cfa9c7ea5dc5 Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Fri, 21 Dec 2001 01:47:50 +0000 Subject: [PATCH] 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 --- build/instdso.sh | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.40.0