diff options
author | dhacker29 <dhackerdvm@gmail.com> | 2015-04-08 03:22:42 -0400 |
---|---|---|
committer | Tom Marshall <tdm@cyngn.com> | 2015-11-25 15:35:47 -0800 |
commit | 0b0db7d064349f483635f577ebc70ad2df479f8c (patch) | |
tree | 52d95c9c1628ad30f3ebfa28393d9329cab119e8 | |
parent | fb1db30c09b083bebe33b81f4f6771aed21399f7 (diff) | |
download | bootable_recovery-0b0db7d064349f483635f577ebc70ad2df479f8c.zip bootable_recovery-0b0db7d064349f483635f577ebc70ad2df479f8c.tar.gz bootable_recovery-0b0db7d064349f483635f577ebc70ad2df479f8c.tar.bz2 |
Don't disable including TARGET_RECOVERY_UI_LIB if exists
This is needed for fugu (Nexus Player) as it has one button on the
bottom.
Change-Id: Ic9f1f546abd90ff9bb6f983bc57628bcb45d641c
-rw-r--r-- | Android.mk | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -132,11 +132,11 @@ LOCAL_CFLAGS += -DUSE_EXT4 -DMINIVOLD LOCAL_C_INCLUDES += system/extras/ext4_utils system/core/fs_mgr/include external/fsck_msdos LOCAL_C_INCLUDES += system/vold -#ifeq ($(TARGET_RECOVERY_UI_LIB),) +ifeq ($(TARGET_RECOVERY_UI_LIB),) LOCAL_SRC_FILES += default_device.cpp -#else -# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) -#endif +else + LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) +endif LOCAL_C_INCLUDES += system/extras/ext4_utils LOCAL_C_INCLUDES += external/boringssl/include |