aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-05-26 10:52:35 -0700
committerElliott Hughes <enh@google.com>2017-05-26 10:52:35 -0700
commitc2beb1c753e30aa6b20a5a151a966ca1ad79e405 (patch)
treeb0e5ffffaa152de78e8c95df81bca52d46856c9c
parent06036bc5d9ab87ad7642e4f44afe9043275a212a (diff)
downloadstrace-c2beb1c753e30aa6b20a5a151a966ca1ad79e405.tar.gz
Disable broken mips strace build.
Bug: N/A Test: doesn't break product builds. Change-Id: Ib0bdbecf57da110f4fef7c72055fda2c45bce407
-rw-r--r--Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 33812397..1ea676f8 100644
--- a/Android.mk
+++ b/Android.mk
@@ -37,6 +37,8 @@ LOCAL_PATH := $(call my-dir)
# -------------------------------------------------------------------------
+ifneq ($(strip $(TARGET_ARCH)),mips)
+
include $(CLEAR_VARS)
strace_version := $(shell grep strace $(LOCAL_PATH)/debian/changelog | \
@@ -360,3 +362,5 @@ LOCAL_MODULE_TAGS := debug
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
include $(BUILD_EXECUTABLE)
+
+endif