fix mislaid 'if' in recovery
When I moved the building of the recovery image upwards in the file, I moved an 'endif' surrounding it but not the matching 'if'. How did this ever work?
This commit is contained in:
@@ -499,6 +499,10 @@ endif
|
|||||||
|
|
||||||
# -----------------------------------------------------------------
|
# -----------------------------------------------------------------
|
||||||
# Recovery image
|
# Recovery image
|
||||||
|
|
||||||
|
# If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true
|
||||||
|
ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY)))
|
||||||
|
|
||||||
INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
|
INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
|
||||||
|
|
||||||
recovery_initrc := $(call include-path-for, recovery)/etc/init.rc
|
recovery_initrc := $(call include-path-for, recovery)/etc/init.rc
|
||||||
@@ -733,9 +737,6 @@ userdatatarball-nodeps: $(FS_GET_STATS)
|
|||||||
$(build-userdatatarball-target)
|
$(build-userdatatarball-target)
|
||||||
|
|
||||||
|
|
||||||
# If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true
|
|
||||||
ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY)))
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------
|
# -----------------------------------------------------------------
|
||||||
# bring in the installer image generation defines if necessary
|
# bring in the installer image generation defines if necessary
|
||||||
ifeq ($(TARGET_USE_DISKINSTALLER),true)
|
ifeq ($(TARGET_USE_DISKINSTALLER),true)
|
||||||
|
Reference in New Issue
Block a user