append $ORACLE_HOME/bin to PATH if $ORACLE_HOME is set (shouldn't

this happen when $ORACLE_HOME is set?)
This commit is contained in:
hjp 2007-03-16 08:51:10 +00:00
parent 93c1eca5a1
commit 64279ce7b7
1 changed files with 4 additions and 1 deletions

View File

@ -254,4 +254,7 @@ elif [ -f /etc/oraenv ]
then then
. /etc/oraenv . /etc/oraenv
fi fi
if [ -n "$ORACLE_HOME" ]
then
PATH=`apppath "$ORACLE_HOME/bin"`
fi