From dddd957c74ead7246026e618ab40edf92037aad4 Mon Sep 17 00:00:00 2001 From: Doug Zongker Date: Mon, 15 Jun 2009 21:25:32 -0700 Subject: [PATCH] explicitly list SDK image dependencies The SDK build used to have the update package as a dependency, in order to force various image files to be built. Now the the update package can't be built for sdk-eng, list the individual images needed instead. --- core/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index 0b7aa88725..713c81ba2f 100644 --- a/core/Makefile +++ b/core/Makefile @@ -1093,7 +1093,9 @@ deps := \ $(target_notice_file_txt) \ $(tools_notice_file_txt) \ $(OUT_DOCS)/offline-sdk-timestamp \ - $(INTERNAL_UPDATE_PACKAGE_TARGET) \ + $(INSTALLED_SYSTEMIMAGE) \ + $(INSTALLED_USERDATAIMAGE_TARGET) \ + $(INSTALLED_RAMDISK_TARGET) \ $(INSTALLED_SDK_BUILD_PROP_TARGET) \ $(ATREE_FILES) \ $(atree_dir)/sdk.atree \