String literal change.

Change-Id: Ic1289ee3abb184b4617aa42c28e6eca812600463
This commit is contained in:
Ying Wang 2010-09-22 12:56:13 -07:00
parent ce7d5023c3
commit 38a3161dc7
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ if [ "x$ANDROID_JAVA_HOME" != x ] && [ -e "$ANDROID_JAVA_HOME/lib/tools.jar" ] ;
else
JAVAC=$(which javac)
if [ -z "$JAVAC" ] ; then
echo "Please-install-JDK-5.0,-update-12-or-higher,-which-you-can-download-from-java.sun.com"
echo "Please-install-JDK-6.0,-which-you-can-download-from-java.sun.com"
exit 1
fi
while [ -L $JAVAC ] ; do

View File

@ -75,7 +75,7 @@ build_arch := $(shell uname -m)
ifneq (64,$(findstring 64,$(build_arch)))
$(warning ************************************************************)
$(warning You are attempting to build on a 32-bit system.)
$(warning Only 64-bit build environments are supported now.)
$(warning Only 64-bit build environments are supported beyond froyo/2.2.)
$(warning ************************************************************)
$(error stop)
endif