From 99258cb0b26fb1e1643bb5036eef86b2b9ff9f97 Mon Sep 17 00:00:00 2001 From: "Tadashi G. Takaoka" Date: Sat, 24 May 2014 03:07:58 +0900 Subject: [PATCH] Warn that dicttool_aosp isn't supported on Darwin Change-Id: I56def43213e94e5b1267e8e900c2192f4b0c2cb5 --- tools/dicttool/Android.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)