From 66c78e46d278b6ff5ae658e86bc5816e234e8f3d Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Fri, 5 Sep 2014 17:47:34 -0700 Subject: [PATCH] Run device-specific tasks at the end of Makefile. This allows us to add device-specific tasks. Bug: 17406520 Change-Id: If23a6d530104a8dc3eeaf8215d8d41a6847f4645 --- core/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/Makefile b/core/Makefile index e3dd7ad74..506488662 100644 --- a/core/Makefile +++ b/core/Makefile @@ -1744,6 +1744,9 @@ ifneq ($(dont_bother),true) include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) -include $(sort $(wildcard device/*/build/tasks/*.mk)) +# Also the project-specific tasks +-include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) +-include $(sort $(wildcard device/*/*/build/tasks/*.mk)) endif # -----------------------------------------------------------------