can't use dos paths with msys in PATH apparently.
authorChris Koeritz <fred@gruntose.com>
Fri, 24 Feb 2012 17:15:40 +0000 (12:15 -0500)
committerChris Koeritz <fred@gruntose.com>
Fri, 24 Feb 2012 17:15:40 +0000 (12:15 -0500)
examples/custom_overrides/fred/java_profile.sh

index 506cc518d047eebc7237f2a5f92590784d549f6b..72ae763b80f1fa361c666d6f7865b923800eeba1 100644 (file)
@@ -51,7 +51,7 @@ if [ ! -d "$JAVA_HOME" ]; then
 fi
 if [ ! -d "$JAVA_HOME" ]; then
   # try using a windows version.
-  JAVA_HOME=d:/tools/java6-jre
+  JAVA_HOME=/d/tools/java6-jre
 fi
 # this should go last, since it changes the bin dir.
 if [ ! -d "$JAVA_HOME" ]; then
@@ -69,7 +69,7 @@ fi
 
 if [ ! -d "$JDK_HOME" ]; then
   # try using a windows version.
-  JDK_HOME="d:/tools/java6-jdk"
+  JDK_HOME="/d/tools/java6-jdk"
   if [ -d "$JDK_HOME/jre" ]; then
     # reset java home.
     JAVA_HOME="$JDK_HOME/jre"
@@ -96,13 +96,13 @@ if [ ! -d "$ECLIPSE_DIR" ]; then
   ECLIPSE_DIR="/c/Program Files/eclipse"
 fi
 if [ ! -d "$ECLIPSE_DIR" ]; then
-  ECLIPSE_DIR="c:/tools/eclipse"
+  ECLIPSE_DIR="/c/tools/eclipse"
 fi
 if [ ! -d "$ECLIPSE_DIR" ]; then
-  ECLIPSE_DIR="d:/tools/eclipse"
+  ECLIPSE_DIR="/d/tools/eclipse"
 fi
 if [ ! -d "$ECLIPSE_DIR" ]; then
-  ECLIPSE_DIR="e:/tools/eclipse"
+  ECLIPSE_DIR="/e/tools/eclipse"
 fi
 # final option is to whine.
 if [ ! -d "$ECLIPSE_DIR" -a -z "$(whichable eclipse 2>/dev/null)" ]; then