diff options
author | Kenny Root <kroot@android.com> | 2012-03-31 00:18:10 +0200 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-03-31 00:18:11 +0200 |
commit | 155cd3c155004433215147437cdf71844c9efd87 (patch) | |
tree | 46aacb687e7126a5a64949dd7ade2f284ee57c15 /updater/Android.mk | |
parent | Reconcile with ics-mr1-release (diff) | |
parent | Extend recovery and updater to support setting file security contexts. (diff) | |
download | android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.gz android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.bz2 android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.lz android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.xz android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.zst android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.zip |
Diffstat (limited to 'updater/Android.mk')
-rw-r--r-- | updater/Android.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/updater/Android.mk b/updater/Android.mk index 8d731db3e..f8ccb76b5 100644 --- a/updater/Android.mk +++ b/updater/Android.mk @@ -24,6 +24,12 @@ LOCAL_C_INCLUDES += system/extras/ext4_utils LOCAL_STATIC_LIBRARIES += libext4_utils libz endif +ifeq ($(HAVE_SELINUX), true) +LOCAL_C_INCLUDES += external/libselinux/include +LOCAL_STATIC_LIBRARIES += libselinux +LOCAL_CFLAGS += -DHAVE_SELINUX +endif # HAVE_SELINUX + LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) LOCAL_STATIC_LIBRARIES += libapplypatch libedify libmtdutils libminzip libz LOCAL_STATIC_LIBRARIES += libmincrypt libbz |