Add missing paren in "java -version" check

Change-Id: Id66e795423e8d25b48ac996956748a93060ea5db
This commit is contained in:
Brian Carlstrom 2014-01-20 23:48:45 -08:00
parent 166bc090ab
commit 0cf57dc99f
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ ifeq ($(shell java -version 2>&1 | grep -i openjdk),)
$(info ************************************************************)
$(info You are attempting to build with an unsupported JDK.)
$(info $(space))
$(info This build requires OpenJDK, but you are using:
$(info This build requires OpenJDK, but you are using:)
$(info $(shell java -version 2>&1 | head -n 2).)
$(info Please follow the machine setup instructions at)
$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)