aboutsummaryrefslogtreecommitdiffstats
path: root/updater/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 /updater/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 'updater/Android.mk')
-rw-r--r--updater/Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/updater/Android.mk b/updater/Android.mk
index 8d731db..2c51f99 100644
--- a/updater/Android.mk
+++ b/updater/Android.mk
@@ -22,6 +22,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
LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)