Add the missing LOCAL_CFLAGS for librecovery.
The -DAB_OTA_UDPATER part was missing when separating the librecovery
module (commit 62e0bc7586
).
Bug: 37300957
Test: Build sailfish recovery image and sideload full OTA.
Change-Id: Idd25662f6bc812c1aca95b096802f59b051f8d63
This commit is contained in:
parent
62e0bc7586
commit
25dbe1717e
1 changed files with 5 additions and 0 deletions
|
@ -45,6 +45,11 @@ LOCAL_SRC_FILES := \
|
|||
install.cpp
|
||||
LOCAL_CFLAGS := -Wno-unused-parameter -Werror
|
||||
LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
|
||||
|
||||
ifeq ($(AB_OTA_UPDATER),true)
|
||||
LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
|
||||
endif
|
||||
|
||||
LOCAL_MODULE := librecovery
|
||||
LOCAL_STATIC_LIBRARIES := \
|
||||
libminui \
|
||||
|
|
Loading…
Reference in a new issue