summaryrefslogtreecommitdiff
path: root/f2fs_utils
diff options
context:
space:
mode:
authorDimitry Ivanov <dimitry@google.com>2016-02-12 16:28:49 -0800
committerDimitry Ivanov <dimitry@google.com>2016-02-12 16:28:49 -0800
commit01252c9a1087b6a09f238f1384d4460f12d41664 (patch)
treef2e9791ad690b740765e444ed18028a85146b199 /f2fs_utils
parentec255673dc853bcf9a829ea0f476d4fd2f1d4a67 (diff)
downloadextras-01252c9a1087b6a09f238f1384d4460f12d41664.tar.gz
Add missing liblog dependency
Bug: http://b/27171986 Change-Id: Ifef160cce7f64cd95ceb121e1c311e52352174c4
Diffstat (limited to 'f2fs_utils')
-rw-r--r--f2fs_utils/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/f2fs_utils/Android.mk b/f2fs_utils/Android.mk
index 647c390b..82c3ee00 100644
--- a/f2fs_utils/Android.mk
+++ b/f2fs_utils/Android.mk
@@ -76,7 +76,7 @@ endif
include $(CLEAR_VARS)
LOCAL_MODULE := libf2fs_sparseblock
LOCAL_SRC_FILES := f2fs_sparseblock.c
-LOCAL_SHARED_LIBRARIES := libcutils
+LOCAL_SHARED_LIBRARIES := liblog libcutils
LOCAL_C_INCLUDES := external/f2fs-tools/include \
system/core/include/log
include $(BUILD_SHARED_LIBRARY)
@@ -84,7 +84,7 @@ include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := f2fs_sparseblock
LOCAL_SRC_FILES := f2fs_sparseblock.c
-LOCAL_SHARED_LIBRARIES := libcutils
+LOCAL_SHARED_LIBRARIES := liblog libcutils
LOCAL_C_INCLUDES := external/f2fs-tools/include \
system/core/include/log
include $(BUILD_EXECUTABLE)