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

Commit e84739e9 authored by Raphael Moll's avatar Raphael Moll Committed by Android Code Review
Browse files

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

parents 0683a773 4de32c69
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