aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-05-24 03:07:58 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-05-24 03:08:57 +0900
commit99258cb0b26fb1e1643bb5036eef86b2b9ff9f97 (patch)
tree70f0fe0554c8e70d91d75006772e190b2211cc33 /tools
parentdb21267b788592ce99b9fb052801c6ec90bfe7b6 (diff)
downloadlatinime-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.mk4
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)