Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8755e2b2 authored by Raphael Moll's avatar Raphael Moll Committed by Android Git Automerger
Browse files

am e84739e9: Merge "Fix find-jdk-tools-jar to be cygwin-friendly."

* commit 'e84739e9':
  Fix find-jdk-tools-jar to be cygwin-friendly.
parents 123995f9 e84739e9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,9 +6,9 @@ else
	echo "Please-install-JDK-6,-which-you-can-download-from-java.sun.com"
	exit 1
    fi
    while [ -L $JAVAC ] ; do
        LSLINE=$(ls -l $JAVAC)
        JAVAC=$(echo -n $LSLINE | sed -e "s/.* -> //")
    while [ -L "$JAVAC" ] ; do
        LSLINE=$(ls -l "$JAVAC")
        JAVAC=$(echo -n "$LSLINE" | sed -e "s/.* -> //")
    done
    echo $JAVAC | sed -e "s:\(.*\)/bin/javac.*:\\1/lib/tools.jar:"
fi