aboutsummaryrefslogtreecommitdiffstats
path: root/minadbd
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-05-01 22:29:01 -0700
committerElliott Hughes <enh@google.com>2015-05-01 22:40:06 -0700
commit4cf34d5d297db4f7130a7f1472c394e38ea0e642 (patch)
tree298084477b8db5bf03dc25a2d5e8f04428aad955 /minadbd
parent15931924e1820d4c2bc9f9c0c7734c43c92b866b (diff)
downloadbootable_recovery-4cf34d5d297db4f7130a7f1472c394e38ea0e642.zip
bootable_recovery-4cf34d5d297db4f7130a7f1472c394e38ea0e642.tar.gz
bootable_recovery-4cf34d5d297db4f7130a7f1472c394e38ea0e642.tar.bz2
Fix mips64 minadbd_test build.
Looks like the mips64 linker isn't as good as the others at GCing unused stuff, which means it needs libcutils. Change-Id: I5f768e44514350fb81e5360351db3e9cc4201702 (cherry picked from commit dbb20c48633e63c7c244e84f3fea76e083e225d7)
Diffstat (limited to 'minadbd')
-rw-r--r--minadbd/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/minadbd/Android.mk b/minadbd/Android.mk
index 8398cef..a7a3e08 100644
--- a/minadbd/Android.mk
+++ b/minadbd/Android.mk
@@ -32,6 +32,6 @@ LOCAL_SRC_FILES := fuse_adb_provider_test.cpp
LOCAL_CFLAGS := $(minadbd_cflags)
LOCAL_C_INCLUDES := $(LOCAL_PATH) system/core/adb
LOCAL_STATIC_LIBRARIES := libminadbd
-LOCAL_SHARED_LIBRARIES := liblog libbase
+LOCAL_SHARED_LIBRARIES := liblog libbase libcutils
include $(BUILD_NATIVE_TEST)