73f7e76837
Point to external/selinux/libsepol instead of external/libsepol.
(cherry picked from commit 96136d847d
)
Change-Id: I09c33a4cbd7b4cd3ef2341c042259b96c0b59372
14 lines
432 B
Makefile
14 lines
432 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
###################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := sepolicy-analyze
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := external/selinux/libsepol/include
|
|
LOCAL_CFLAGS := -Wall -Werror
|
|
LOCAL_SRC_FILES := sepolicy-analyze.c dups.c neverallow.c perm.c typecmp.c booleans.c attribute.c utils.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol
|
|
LOCAL_CXX_STL := none
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|