diff options
author | Christopher Ferris <cferris@google.com> | 2016-10-21 12:56:06 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2016-10-21 12:56:35 -0700 |
commit | c1ef4b25a7fc466c1b18be16beb0784c045ac43a (patch) | |
tree | 5fd91e666321f5a11616d6630fa6ace750f3978a /tools/bit | |
parent | 586bfe54298b0e363d38651e728d6cde90179b1a (diff) |
Fix mac build.
Do not build the bit tool on darwin.
Test: Make sure this still builds on linux.
Change-Id: Ie958649893016771f1fa3df6f10d443d0117c171
Diffstat (limited to 'tools/bit')
-rw-r--r-- | tools/bit/Android.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/bit/Android.mk b/tools/bit/Android.mk index 7f691a07b06a..1c1291f07d2e 100644 --- a/tools/bit/Android.mk +++ b/tools/bit/Android.mk @@ -22,6 +22,9 @@ include $(CLEAR_VARS) LOCAL_MODULE := bit +# This tool doesn't build on darwin. +LOCAL_MODULE_HOST_OS := linux + LOCAL_SRC_FILES := \ aapt.cpp \ adb.cpp \ |