diff options
| author | 2019-06-12 21:33:38 +0000 | |
|---|---|---|
| committer | 2019-06-12 21:36:57 +0000 | |
| commit | 6b72c73a503aed59c5e04514cb13fe30ae4aa493 (patch) | |
| tree | 8bdd6ee4dd68e382d1ceeb556181749f24c33838 | |
| parent | f14179b3ff0e23091d217c5669015c84778cc3e2 (diff) | |
Fix dependency on BOARD_AVB_SYSTEM_KEY_PATH
Bug: 130111713
Test: treehugger
Change-Id: I2183ac9f8c45eec178876768dfcc83ae62445293
| -rw-r--r-- | core/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/Makefile b/core/Makefile index ed4c06a978..79fd0efe11 100644 --- a/core/Makefile +++ b/core/Makefile @@ -2230,6 +2230,9 @@ define build-systemimage-target exit 1 ) endef +ifeq ($(BOARD_AVB_ENABLE),true) +$(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) +endif $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) $(BUILD_IMAGE_SRCS) $(call build-systemimage-target,$@) |