aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-05-24 03:07:57 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-05-24 03:07:57 +0000
commit19a11ab470643687256faec1ed887ef40356a7f4 (patch)
tree4f1073ff58ca172de61858546c7b4d27e411bb22
parente8ea251e3e82acbc14cf07aff32c2037a39ec3dc (diff)
parentfdb889cb43444a171bf71c2deaf00033b8a14949 (diff)
downloadlatinime-19a11ab470643687256faec1ed887ef40356a7f4.tar.gz
latinime-19a11ab470643687256faec1ed887ef40356a7f4.tar.xz
latinime-19a11ab470643687256faec1ed887ef40356a7f4.zip
am fdb889cb: Merge "Warn that dicttool_aosp isn\'t supported on Darwin"
* commit 'fdb889cb43444a171bf71c2deaf00033b8a14949': Warn that dicttool_aosp isn't supported on Darwin
-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)