libdiskconfig: add missing LOCAL_MODULE_TAGS

Change-Id: Ia4fceb4e4f33df3e37b0e83f042fff09dab2d06c
This commit is contained in:
Chih-Wei Huang 2011-01-16 16:56:42 +08:00
parent 80d508fd62
commit 68cc6bb0f1
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ commonSources := \
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(commonSources)
LOCAL_MODULE := libdiskconfig
LOCAL_MODULE_TAGS := optional
LOCAL_SYSTEM_SHARED_LIBRARIES := libcutils liblog libc
include $(BUILD_SHARED_LIBRARY)
@ -19,6 +20,7 @@ ifeq ($(HOST_OS),linux)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(commonSources)
LOCAL_MODULE := libdiskconfig_host
LOCAL_MODULE_TAGS := optional
LOCAL_SYSTEM_SHARED_LIBRARIES := libcutils
LOCAL_CFLAGS := -O2 -g -W -Wall -Werror -D_LARGEFILE64_SOURCE
include $(BUILD_HOST_STATIC_LIBRARY)