aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorStephen Smalley <sds@tycho.nsa.gov>2012-01-13 07:59:51 -0500
committerStephen Smalley <sds@tycho.nsa.gov>2012-01-24 15:16:31 -0500
commit1a114494950d8bce01bb860cd8a7221fdc9593cc (patch)
treec78a22b97f26c97045c44b64a018e00c97a3c526 /Android.mk
parent9fc3e3c8a6a5f2f82d5712805e90a9c89f914efa (diff)
downloadbootable_recovery-1a114494950d8bce01bb860cd8a7221fdc9593cc.zip
bootable_recovery-1a114494950d8bce01bb860cd8a7221fdc9593cc.tar.gz
bootable_recovery-1a114494950d8bce01bb860cd8a7221fdc9593cc.tar.bz2
Add libselinux to LOCAL_STATIC_LIBRARIES wherever libext4_utils is used.
libext4_utils now calls libselinux in order to determine the file security context to set on files when creating ext4 images. Change-Id: I09fb9d563d22ee106bf100eacd4cd9c6300b1152
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 282862f..304626e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -24,6 +24,11 @@ ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
LOCAL_CFLAGS += -DUSE_EXT4
LOCAL_C_INCLUDES += system/extras/ext4_utils
LOCAL_STATIC_LIBRARIES += libext4_utils libz
+ifeq ($(HAVE_SELINUX), true)
+LOCAL_C_INCLUDES += external/libselinux/include
+LOCAL_STATIC_LIBRARIES += libselinux
+LOCAL_CFLAGS += -DHAVE_SELINUX
+endif # HAVE_SELINUX
endif
# This binary is in the recovery ramdisk, which is otherwise a copy of root.
@@ -43,6 +48,12 @@ LOCAL_STATIC_LIBRARIES += libminzip libunz libmtdutils libmincrypt
LOCAL_STATIC_LIBRARIES += libminui libpixelflinger_static libpng libcutils
LOCAL_STATIC_LIBRARIES += libstdc++ libc
+ifeq ($(HAVE_SELINUX),true)
+LOCAL_C_INCLUDES += external/libselinux/include
+LOCAL_STATIC_LIBRARIES += libselinux
+LOCAL_CFLAGS += -DHAVE_SELINUX
+endif # HAVE_SELINUX
+
LOCAL_C_INCLUDES += system/extras/ext4_utils
include $(BUILD_EXECUTABLE)