aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-05-26 18:18:16 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-26 18:18:16 +0000
commitcd2d176bd95bb64304369189f173c04fd5919a66 (patch)
treeb0e5ffffaa152de78e8c95df81bca52d46856c9c
parent8aa916a190da43c878271b7c002960e939146243 (diff)
parent2bba69786b37d719de5dbfced0ebaf50165fff37 (diff)
downloadstrace-cd2d176bd95bb64304369189f173c04fd5919a66.tar.gz
Merge "Disable broken mips strace build." am: 5312218a62 am: f100cc89fa am: 5829b8e9c9
am: 2bba69786b Change-Id: I15d4991bddcfd3dedaf84a24588fb737ac544ab9
-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