X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fcustom_overrides%2Ffred%2Fjava_profile.sh;h=67cb90fbee2c0f01dd01154683db1fade075d642;hb=b261bf1e7d73426dca3151b4dedfda078ee993a5;hp=612308e698b791000c8b3186f797b1bbd2c36fbb;hpb=fbbf136527ca3583344ab24080600c62c296cf66;p=feisty_meow.git diff --git a/examples/custom_overrides/fred/java_profile.sh b/examples/custom_overrides/fred/java_profile.sh old mode 100755 new mode 100644 index 612308e6..67cb90fb --- a/examples/custom_overrides/fred/java_profile.sh +++ b/examples/custom_overrides/fred/java_profile.sh @@ -53,7 +53,7 @@ if [ ! -d "$JAVA_HOME" ]; then JAVA_HOME="$(ls -d c:/tools/*jdk* 2>/dev/null)" fi if [ ! -d "$JAVA_HOME" ]; then - if [ ! -z "$(grep 'd:' /proc/mounts 2>/dev/null)" ]; then + if [ ! -z "$(grep -i 'd:' /proc/mounts 2>/dev/null)" ]; then # try using a windows version. JAVA_HOME="$(ls -d d:/tools/*jdk* 2>/dev/null)" fi @@ -89,12 +89,12 @@ if [ ! -d "$ECLIPSE_DIR" ]; then ECLIPSE_DIR="c:/tools/eclipse" fi if [ ! -d "$ECLIPSE_DIR" ]; then - if [ ! -z "$(grep 'd:' /proc/mounts)" ]; then + if [ ! -z "$(grep -i 'd:' /proc/mounts)" ]; then ECLIPSE_DIR="d:/tools/eclipse" fi fi if [ ! -d "$ECLIPSE_DIR" ]; then - if [ ! -z "$(grep 'e:' /proc/mounts)" ]; then + if [ ! -z "$(grep -i 'e:' /proc/mounts)" ]; then ECLIPSE_DIR="e:/tools/eclipse" fi fi @@ -121,14 +121,14 @@ if [ ! -z "$JAVA_HOME" ]; then if [ ! -z "$(uname -a | grep -i cygwin)" ]; then j=$(echo $j | sed -e 's/^\(.\):/\/cygdrive\/\1/') fi - export PATH=$PATH:$j/$JAVA_BIN_PIECE + export PATH=$j/$JAVA_BIN_PIECE:$PATH fi if [ ! -z "$ECLIPSE_DIR" ]; then e="$ECLIPSE_DIR" if [ ! -z "$(uname -a | grep -i cygwin)" ]; then e=$(echo $e | sed -e 's/^\(.\):/\/cygdrive\/\1/') fi - export PATH=$PATH:$e + export PATH=$e:$PATH fi ############################