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

Commit d28feb00 authored by Ying Wang's avatar Ying Wang
Browse files

Revert "Fix Java detection on some Linux distributions"

This reverts commit 09040dd8.

Change-Id: Iafb126a6200e259f4176d903bacf8d3de28c6d97
parent 09040dd8
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -2,9 +2,13 @@
if [ "x$ANDROID_JAVA_HOME" != x ] && [ -e "$ANDROID_JAVA_HOME/lib/tools.jar" ] ; then
    echo $ANDROID_JAVA_HOME/lib/tools.jar
else
    JAVAC=$(readlink -f $(which javac))
    JAVAC=$(which javac)
    if [ -z "$JAVAC" ] ; then
        exit 1
    fi
    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