#!/bin/sh # The environment variable $SRCHOME cannot be set during the installation unset SRCHOME AWK=/bin/awk SED=/bin/sed UNAME=/bin/uname GETCONF=/usr/bin/getconf if [ `$UNAME` = "Linux" ]; then if [ -e $GETCONF ]; then value=`$GETCONF LONG_BIT` if [ $value != 64 ]; then echo "\"You are attempting to install 64-bit Oracle on a 32-bit operating system. This is not supported and will not work.\""; exit 0; fi fi fi LOCALONLY=local_only LOCAL=TRUE SILENT=FALSE CMDDIR=`dirname $0` if [ "$CMDDIR" = "." ]; then CMDDIR=`pwd`; fi # Replace relative path with fully qualified path. if [ ! "`echo $CMDDIR|grep '^/'`" ]; then CMDDIR=`pwd`/$CMDDIR; fi if [ x${PATH} != x ]; then PATH=/usr/bin:/usr/ccs/bin:$PATH:$CMDDIR/install export PATH else PATH=/usr/bin:/usr/ccs/bin:$CMDDIR/install export PATH fi #$CMDDIR/runInstaller $* $CMDDIR/install/.oui $*