diff options
author | Ethan Chen <intervigil@gmail.com> | 2016-04-13 17:49:36 -0700 |
---|---|---|
committer | Ethan Chen <intervigil@gmail.com> | 2016-04-13 17:49:36 -0700 |
commit | 4bbce4fdc6186d3dd6986daff4fc5ce6dc918421 (patch) | |
tree | 7584348d76af5966867a14753967d4e3bc784c46 /core/Makefile | |
parent | f31558c416b9fb7a4b1e555aab0c12863d5e9814 (diff) | |
download | build-4bbce4fdc6186d3dd6986daff4fc5ce6dc918421.zip build-4bbce4fdc6186d3dd6986daff4fc5ce6dc918421.tar.gz build-4bbce4fdc6186d3dd6986daff4fc5ce6dc918421.tar.bz2 |
build: Add BOOTIMAGE_EXTRA_DEPS for BOOT_SIGNER products too
* Products supporting BOOT_SIGNER should depend on BOOTIMAGE_EXTRA_DEPS
as well, since that dt.img generation is tied to that rule.
Change-Id: I7c3040d0c59c66aaac46121d6ca50ab96bdf7e72
Diffstat (limited to 'core/Makefile')
-rw-r--r-- | core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Makefile b/core/Makefile index 5177476..4d91425 100644 --- a/core/Makefile +++ b/core/Makefile @@ -544,7 +544,7 @@ ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) else ifeq (true,$(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SUPPORTS_BOOT_SIGNER)) # TARGET_BOOTIMAGE_USE_EXT2 != true -$(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOT_SIGNER) +$(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOT_SIGNER) $(BOOTIMAGE_EXTRA_DEPS) $(call pretty,"Target boot image: $@") $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ $(BOOT_SIGNER) /boot $@ $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VERITY_SIGNING_KEY).x509.pem $@ |