diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-01 14:53:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-01 15:16:24 +0100 |
commit | c306c444bfd3d0984741fd99ed4f29016ef14ee2 (patch) | |
tree | 0486343a3c7533a81655b56838a5a64b515ab7da /odk/settings/settings.mk | |
parent | c34fc4520dfee4ca068f249ee0756dacaa7a60cf (diff) |
Also on macOS use JDK's .../Home/bin/javac etc.
Only on macOS, the SDK used to expect javac etc. in a Commands sub-dir (which
Apple's JDK 1.6.0 has but Oracle's JDK 1.8.x don't). However, at least both
Apple's latest JDK 1.6.0 (as available via <https://support.apple.com/kb/DL1572>
"Download Java for OS X 2015-001") and any recent Oracle JDK 1.8.x (like
jdk1.8.0_121.jdk) have a Home sub-dir that contains a "standard" sub-tree with
bin sub-dir etc., like on other platforms. So consistently make the SDK use
that instead.
This removes the JAVABIN Make variable from settings.mk. It is assumed to not
be used by client code.
Change-Id: Ie0ad647f489528444dfd399c2f00500b772d3288
Diffstat (limited to 'odk/settings/settings.mk')
-rw-r--r-- | odk/settings/settings.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/odk/settings/settings.mk b/odk/settings/settings.mk index 74bd791c0462..b455a6b5d399 100644 --- a/odk/settings/settings.mk +++ b/odk/settings/settings.mk @@ -38,8 +38,6 @@ ifeq "$(DEBUG)" "yes" JAVAC_FLAGS+=-g endif -JAVABIN=bin - ########################################################################### # # Windows specific settings @@ -368,7 +366,6 @@ endif ifeq "$(PLATFORM)" "macosx" UNOPKG_PLATFORM=MacOSX_x86_64 -JAVABIN=Commands OS=MACOSX PS=/ |