aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-05-26 18:14:17 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-26 18:14:17 +0000
commit5829b8e9c9087206e12fe1423f35cef3d0baa208 (patch)
treeb0e5ffffaa152de78e8c95df81bca52d46856c9c
parentc68065f9c1ea2ac94fa998cad6f9160d5ea03c2c (diff)
parentf100cc89fac758feae84f6ba086e17197f78fc5f (diff)
downloadstrace-5829b8e9c9087206e12fe1423f35cef3d0baa208.tar.gz
Merge "Disable broken mips strace build." am: 5312218a62
am: f100cc89fa Change-Id: I6287655b937ab8b3606d735b2fb631e16b920b51
-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