summaryrefslogtreecommitdiffstats
path: root/core/main.mk
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-01-20 23:48:45 -0800
committerBrian Carlstrom <bdc@google.com>2014-01-20 23:48:45 -0800
commit0cf57dc99f7040a96e8d3da646adace12bcb58c7 (patch)
tree70e3ec37820e6976549655926b0762c326c81d54 /core/main.mk
parent166bc090ab0ac7ac7a620889fd96656be4ca69c1 (diff)
downloadbuild-0cf57dc99f7040a96e8d3da646adace12bcb58c7.zip
build-0cf57dc99f7040a96e8d3da646adace12bcb58c7.tar.gz
build-0cf57dc99f7040a96e8d3da646adace12bcb58c7.tar.bz2
Add missing paren in "java -version" check
Change-Id: Id66e795423e8d25b48ac996956748a93060ea5db
Diffstat (limited to 'core/main.mk')
-rw-r--r--core/main.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/main.mk b/core/main.mk
index 5494a73..cc57ae8 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -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)