From: Chris Koeritz Date: Fri, 24 Feb 2012 17:13:47 +0000 (-0800) Subject: updated for finding jdk on winders too. X-Git-Tag: 2.140.90~1556 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=b01c3a9dc40224057df2ea7686b2bf82facbe9a2 updated for finding jdk on winders too. --- diff --git a/examples/custom_overrides/fred/java_profile.sh b/examples/custom_overrides/fred/java_profile.sh index 2090de2d..506cc518 100644 --- a/examples/custom_overrides/fred/java_profile.sh +++ b/examples/custom_overrides/fred/java_profile.sh @@ -67,6 +67,20 @@ fi ############################ +if [ ! -d "$JDK_HOME" ]; then + # try using a windows version. + JDK_HOME="d:/tools/java6-jdk" + if [ -d "$JDK_HOME/jre" ]; then + # reset java home. + JAVA_HOME="$JDK_HOME/jre" + fi +fi +if [ ! -d "$JDK_HOME" ]; then + intuition_failure JDK_HOME +fi + +############################ + # intuit where we have our local eclipse. if [ ! -d "$ECLIPSE_DIR" ]; then export ECLIPSE_DIR=/usr/local/eclipse_jee @@ -103,6 +117,10 @@ fi if [ ! -z "$JAVA_HOME" ]; then export PATH=$JAVA_HOME/$JAVA_BIN_PIECE:$PATH fi +if [ ! -z "$JDK_HOME" ]; then +#may have to do bin piece if support mac with jdk bit. + export PATH=$JDK_HOME/bin:$PATH +fi if [ ! -z "$ECLIPSE_DIR" ]; then export PATH=$ECLIPSE_DIR:$PATH fi