From 35b69f698de46ec2edb183dd08e3fdff600a94de Mon Sep 17 00:00:00 2001 From: Devin Moore Date: Thu, 20 Jan 2022 15:23:51 +0000 Subject: [PATCH] Fix initbootimage .PHONY target This was assigning the INSTALLED_INIT_BOOT_IMAGE_TARGET to bootimage instead of initbootimage. Test: m Bug: 203698939 Change-Id: I5fc6e2296dac8cc35c4d46601fea6ab0ee18fd18 --- core/main.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/main.mk b/core/main.mk index 56007e2cba..5ba83020de 100644 --- a/core/main.mk +++ b/core/main.mk @@ -1604,7 +1604,7 @@ superimage_empty: $(INSTALLED_SUPERIMAGE_EMPTY_TARGET) bootimage: $(INSTALLED_BOOTIMAGE_TARGET) .PHONY: initbootimage -bootimage: $(INSTALLED_INIT_BOOT_IMAGE_TARGET) +initbootimage: $(INSTALLED_INIT_BOOT_IMAGE_TARGET) ifeq (true,$(PRODUCT_EXPORT_BOOT_IMAGE_TO_DIST)) $(call dist-for-goals, bootimage, $(INSTALLED_BOOTIMAGE_TARGET))