summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorYing Wang <wangying@android.com>2013-01-08 13:56:07 -0800
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-01-08 13:56:07 -0800
commitef2ea99bfe1e19c451882c3c8eb19368d0087ff6 (patch)
tree5eb8d7e46c2a8f588eb2beaba3c8893cd9f265be /adb
parent6d9589c33517c024ab992d1e2c1b8efd1b51e366 (diff)
parent9c607552077321d9b6b2e29dab8a6e276bffb457 (diff)
downloadsystem_core-ef2ea99bfe1e19c451882c3c8eb19368d0087ff6.zip
system_core-ef2ea99bfe1e19c451882c3c8eb19368d0087ff6.tar.gz
system_core-ef2ea99bfe1e19c451882c3c8eb19368d0087ff6.tar.bz2
Merge "Correct LOCAL_LDLIBS of adb"
Diffstat (limited to 'adb')
-rw-r--r--adb/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/adb/Android.mk b/adb/Android.mk
index bc8315e..32dd95a 100644
--- a/adb/Android.mk
+++ b/adb/Android.mk
@@ -16,7 +16,7 @@ EXTRA_SRCS :=
ifeq ($(HOST_OS),linux)
USB_SRCS := usb_linux.c
EXTRA_SRCS := get_my_path_linux.c
- LOCAL_LDLIBS += -lrt -lncurses -lpthread
+ LOCAL_LDLIBS += -lrt -ldl -lpthread
endif
ifeq ($(HOST_OS),darwin)
@@ -139,7 +139,7 @@ include $(BUILD_EXECUTABLE)
ifneq ($(SDK_ONLY),true)
include $(CLEAR_VARS)
-LOCAL_LDLIBS := -lrt -lncurses -lpthread
+LOCAL_LDLIBS := -lrt -ldl -lpthread
LOCAL_SRC_FILES := \
adb.c \