From 073a9ebbbf509097bccd0f560cefd84f10879c13 Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Wed, 15 Apr 2015 12:53:39 -0700 Subject: [PATCH] fs_config: use libcutils and libselinux shared libraries - move to libcutils.so and libselinux.so as shared now that they are in DISTTOOL. - liblog dependency is part of libcutils, and need not be called out explicitly now. liblog is in DISTTOOL. - libcutils fs_config has the right to add Android logging Bug: 19908228 Change-Id: Iaa60ad624b42d83653840ac3c77bfa03ad8674aa --- tools/fs_config/Android.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/fs_config/Android.mk b/tools/fs_config/Android.mk index f4c871a64a..3e1696269d 100644 --- a/tools/fs_config/Android.mk +++ b/tools/fs_config/Android.mk @@ -13,12 +13,12 @@ # limitations under the License. LOCAL_PATH := $(call my-dir) + include $(CLEAR_VARS) LOCAL_SRC_FILES := fs_config.c LOCAL_MODULE := fs_config -LOCAL_STATIC_LIBRARIES := libcutils liblog libselinux -LOCAL_FORCE_STATIC_EXECUTABLE := true +LOCAL_SHARED_LIBRARIES := libcutils libselinux LOCAL_CFLAGS := -Werror include $(BUILD_HOST_EXECUTABLE)