diff options
author | Elliott Hughes <enh@google.com> | 2015-04-20 08:09:20 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-20 08:09:20 -0700 |
commit | 7b506090e1ac51f4990f17621c6e33847b0632a2 (patch) | |
tree | 2b458ebf507d7afed3e3330afa8dd9709962fde3 /adb/Android.mk | |
parent | 623aa1c47a51990259fbbc271d7f9f40046153fd (diff) | |
download | system_core-7b506090e1ac51f4990f17621c6e33847b0632a2.tar.gz system_core-7b506090e1ac51f4990f17621c6e33847b0632a2.tar.bz2 system_core-7b506090e1ac51f4990f17621c6e33847b0632a2.zip |
Always explain why bind(2) failed.
This has confused several people lately.
Bug: http://b/20219978
Change-Id: I2537ceb83bff0b3166c230c728d4389a983db858
Diffstat (limited to 'adb/Android.mk')
-rw-r--r-- | adb/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/adb/Android.mk b/adb/Android.mk index 2ea89e911..85d173088 100644 --- a/adb/Android.mk +++ b/adb/Android.mk @@ -60,6 +60,8 @@ LOCAL_SRC_FILES := \ qemu_tracing.cpp \ usb_linux_client.cpp \ +LOCAL_SHARED_LIBRARIES := libbase + include $(BUILD_STATIC_LIBRARY) include $(CLEAR_VARS) @@ -71,6 +73,8 @@ LOCAL_SRC_FILES := \ $(LIBADB_$(HOST_OS)_SRC_FILES) \ adb_auth_host.cpp \ +LOCAL_SHARED_LIBRARIES := libbase + # Even though we're building a static library (and thus there's no link step for # this to take effect), this adds the SSL includes to our path. LOCAL_STATIC_LIBRARIES := libcrypto_static |