summaryrefslogtreecommitdiffstats
path: root/init/Android.mk
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2012-10-16 23:07:05 -0700
committerKenny Root <kroot@google.com>2012-10-16 23:18:18 -0700
commitb5982bf7c65b30be981ecfe1847437b05e32b2bb (patch)
tree419373dc3eb0045ca112fa45e1fa25ffa0166ea6 /init/Android.mk
parent44f4f8a4d2bef6e9fc37cd50076295102b38828a (diff)
downloadsystem_core-b5982bf7c65b30be981ecfe1847437b05e32b2bb.zip
system_core-b5982bf7c65b30be981ecfe1847437b05e32b2bb.tar.gz
system_core-b5982bf7c65b30be981ecfe1847437b05e32b2bb.tar.bz2
Remove HAVE_SELINUX guards
Change-Id: I8272c573b3c5dc663203bafab68fad5e94d89364
Diffstat (limited to 'init/Android.mk')
-rw-r--r--init/Android.mk12
1 files changed, 5 insertions, 7 deletions
diff --git a/init/Android.mk b/init/Android.mk
index 7dae9df..f3287a8 100644
--- a/init/Android.mk
+++ b/init/Android.mk
@@ -32,13 +32,11 @@ LOCAL_FORCE_STATIC_EXECUTABLE := true
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
-LOCAL_STATIC_LIBRARIES := libfs_mgr libcutils libc
-
-ifeq ($(HAVE_SELINUX),true)
-LOCAL_STATIC_LIBRARIES += libselinux
-LOCAL_C_INCLUDES += external/libselinux/include
-LOCAL_CFLAGS += -DHAVE_SELINUX
-endif
+LOCAL_STATIC_LIBRARIES := \
+ libfs_mgr \
+ libcutils \
+ libc \
+ libselinux
include $(BUILD_EXECUTABLE)