forked from openkylin/platform_build
am 87286198: am b8d3879e: am 99bb0365: am 948206c0: Merge "Fix tools path on Mac OS for java 7."
* commit '87286198486fb43b35b6dcf8c64ca32a2ec60432': Fix tools path on Mac OS for java 7.
This commit is contained in:
commit
7b199e3fa6
|
@ -390,16 +390,20 @@ endif
|
||||||
OLD_FLEX := prebuilts/misc/$(HOST_PREBUILT_TAG)/flex/flex-2.5.4a$(HOST_EXECUTABLE_SUFFIX)
|
OLD_FLEX := prebuilts/misc/$(HOST_PREBUILT_TAG)/flex/flex-2.5.4a$(HOST_EXECUTABLE_SUFFIX)
|
||||||
|
|
||||||
ifeq ($(HOST_OS),darwin)
|
ifeq ($(HOST_OS),darwin)
|
||||||
# Mac OS' screwy version of java uses a non-standard directory layout
|
ifneq ($(EXPERIMENTAL_USE_JAVA7),)
|
||||||
# and doesn't even seem to have tools.jar. On the other hand, javac seems
|
HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
|
||||||
# to be able to magically find the classes in there, wherever they are, so
|
else
|
||||||
# leave this blank
|
# Deliberately set to blank for Java 6 installations on MacOS. These
|
||||||
|
# versions allegedly use a non-standard directory structure.
|
||||||
HOST_JDK_TOOLS_JAR :=
|
HOST_JDK_TOOLS_JAR :=
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
|
HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(HOST_JDK_TOOLS_JAR),)
|
||||||
ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),)
|
ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),)
|
||||||
$(error Error: could not find jdk tools.jar, please install JDK6, \
|
$(error Error: could not find jdk tools.jar, please install JDK6)
|
||||||
which you can download from java.sun.com)
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue