summaryrefslogtreecommitdiffstats
path: root/tools/fs_config
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2015-04-15 12:53:39 -0700
committerMark Salyzyn <salyzyn@google.com>2015-04-15 14:17:07 -0700
commit073a9ebbbf509097bccd0f560cefd84f10879c13 (patch)
tree42976eade131061a98cf2a8b42173aa22dda4b36 /tools/fs_config
parent03c6e8c58686ffe611952d363de21b54f813ca41 (diff)
downloadbuild-073a9ebbbf509097bccd0f560cefd84f10879c13.zip
build-073a9ebbbf509097bccd0f560cefd84f10879c13.tar.gz
build-073a9ebbbf509097bccd0f560cefd84f10879c13.tar.bz2
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
Diffstat (limited to 'tools/fs_config')
-rw-r--r--tools/fs_config/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/fs_config/Android.mk b/tools/fs_config/Android.mk
index f4c871a..3e16962 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)