Remove bashism from find-jdk-tools-jar.sh

This commit is contained in:
Angus Lees 2009-01-30 10:17:23 +00:00
parent aeb2fa61cf
commit 4cf7606d7e
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
if [[ "x$ANDROID_JAVA_HOME" != x && -e $ANDROID_JAVA_HOME/lib/tools.jar ]] ; then
if [ "x$ANDROID_JAVA_HOME" != x ] && [ -e "$ANDROID_JAVA_HOME/lib/tools.jar" ] ; then
echo $ANDROID_JAVA_HOME/lib/tools.jar
else
JAVAC=$(which javac)