aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-02-16 18:53:29 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-16 18:53:29 +0000
commita3c2df7a9dc064289b1d8e6ab7105310e11bc654 (patch)
tree975974a94974113bffb9705e8d0c4d2af46e5286
parent821cca696a2d6373b74a9fd2e4b29bce79e9625d (diff)
parent3a3b8f648b12acbc9d0621cee54b20d4fd28cc4c (diff)
downloadstrace-a3c2df7a9dc064289b1d8e6ab7105310e11bc654.tar.gz
Merge "Disable broken mips strace build." am: 6ec9d87c7a am: 3b3771506e
am: 3a3b8f648b Change-Id: I348ceee2ea3f4ee3e3b4d9c2c5c312ead0cc56a0
-rw-r--r--Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index a372697e..616bc6ea 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 | \
@@ -349,3 +351,5 @@ LOCAL_MODULE_TAGS := debug
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
include $(BUILD_EXECUTABLE)
+
+endif