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

Commit 4de32c69 authored by Raphael Moll's avatar Raphael Moll
Browse files

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

Change-Id: I9cf2035026725fd1ba8a014b484262ed1acc1df4
parent 4d67e916
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