summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2009-10-02 11:55:41 -0700
committerDoug Kwan <dougkwan@google.com>2009-10-02 11:55:41 -0700
commit399b4a744f0e1212b90b50834d05fce7add9797f (patch)
treed35e6de71c84f4d7c2c4a87cbd43bc537ca55d86
parentccc6a1649cfe31fed30d62939e97bc38fd8c7e4e (diff)
downloadextras-399b4a744f0e1212b90b50834d05fce7add9797f.tar.gz
Add back missing shared library libutils used by the executable in linker
command. The executable contains calls to function defined in the missing library. Currently this is linked via a dependency of another shared library. While this works, it is not the right thing to do.
-rw-r--r--timeinfo/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/timeinfo/Android.mk b/timeinfo/Android.mk
index 85ba6262..7651762e 100644
--- a/timeinfo/Android.mk
+++ b/timeinfo/Android.mk
@@ -20,5 +20,5 @@ LOCAL_MODULE := timeinfo
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := eng
LOCAL_SRC_FILES := timeinfo.cpp
-LOCAL_SHARED_LIBRARIES := libhardware_legacy
+LOCAL_SHARED_LIBRARIES := libhardware_legacy libutils
include $(BUILD_EXECUTABLE)