diff options
author | Ken Sumrall <ksumrall@android.com> | 2013-04-15 12:33:17 -0700 |
---|---|---|
committer | Ken Sumrall <ksumrall@android.com> | 2013-04-15 12:33:17 -0700 |
commit | ebbe9807906dad946659b6e9f849030eaa87731b (patch) | |
tree | 78df29b476658a5a561307c98a94d9661d4552a6 /fs_mgr | |
parent | 1a6d9ec2af7b3151c64a167162c87d258d30735b (diff) | |
download | core-ebbe9807906dad946659b6e9f849030eaa87731b.tar.gz core-ebbe9807906dad946659b6e9f849030eaa87731b.tar.bz2 core-ebbe9807906dad946659b6e9f849030eaa87731b.zip |
Include liblog in fs_mgr to fix the build.
A recent change to how libcutils is built requires liblog
to be explicitly included in the link list if it's needed.
Change-Id: I8547f5e65c488c8f6e314ccd4eb96606742272be
Diffstat (limited to 'fs_mgr')
-rw-r--r-- | fs_mgr/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs_mgr/Android.mk b/fs_mgr/Android.mk index 0ce07c12b..782ae9986 100644 --- a/fs_mgr/Android.mk +++ b/fs_mgr/Android.mk @@ -28,7 +28,7 @@ LOCAL_FORCE_STATIC_EXECUTABLE := true LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)/sbin LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED) -LOCAL_STATIC_LIBRARIES := libfs_mgr liblogwrap libcutils libc +LOCAL_STATIC_LIBRARIES := libfs_mgr liblogwrap libcutils liblog libc include $(BUILD_EXECUTABLE) |