diff options
author | 2014-05-24 03:07:58 +0900 | |
---|---|---|
committer | 2014-05-24 03:08:57 +0900 | |
commit | 99258cb0b26fb1e1643bb5036eef86b2b9ff9f97 (patch) | |
tree | 70f0fe0554c8e70d91d75006772e190b2211cc33 /tools | |
parent | db21267b788592ce99b9fb052801c6ec90bfe7b6 (diff) | |
download | latinime-99258cb0b26fb1e1643bb5036eef86b2b9ff9f97.tar.gz latinime-99258cb0b26fb1e1643bb5036eef86b2b9ff9f97.tar.xz latinime-99258cb0b26fb1e1643bb5036eef86b2b9ff9f97.zip |
Warn that dicttool_aosp isn't supported on Darwin
Change-Id: I56def43213e94e5b1267e8e900c2192f4b0c2cb5
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dicttool/Android.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/dicttool/Android.mk b/tools/dicttool/Android.mk index a3698bdd1..ba57fbe02 100644 --- a/tools/dicttool/Android.mk +++ b/tools/dicttool/Android.mk @@ -15,7 +15,9 @@ # HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11. LATINIME_HOST_OSNAME := $(shell uname -s) -ifneq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this +ifeq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this +$(warning dicttool_aosp is not supported on $(LATINIME_HOST_OSNAME)) +else # TODO: Remove this LATINIME_DICTTOOL_AOSP_LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(LATINIME_DICTTOOL_AOSP_LOCAL_PATH) |