home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
- #ident "%W%"
- # the JDK is now installed in /opt/jdk-1.1.3
-
- # first find out, what OS we are running on
- unset UNIXWARE
- unset OPENSERVER
-
- OSREL=`uname -X | grep Release | cut -f3 -d" " | cut -c1-7` >/dev/null 2>&1
- # OSREL contains now 3.2v5.0.[024] or 4.2MP or ??? Gemini
- if [ $OSREL = "3.2v5.0" ]
- then
- OPENSERVER=1
- else
- UNIXWARE=1
- fi
-
- if [ ! -z "$OPENSERVER" ]
- then
- ${DEBUG} rm -f /opt/K/SCO/JDK/1.1.3
- fi
-
- if [ ! -z "$UNIXWARE" ]
- then
- rm -f /opt/jdk-1.1.3/lib/x86at/green_threads/libXm.so.1.3
- fi
-
- # ----------- END -----------
-