build: Add extra build customization for /product
This makes /product more consistent with /device & /vendor
BUG: 22030305
Change-Id: Ic65bfde7fb3e9fab8c8fb8d99af15404574abde0
diff --git a/core/Makefile b/core/Makefile
index d94318d..94585c6 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -1966,9 +1966,11 @@
include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk))
-include $(sort $(wildcard vendor/*/build/tasks/*.mk))
-include $(sort $(wildcard device/*/build/tasks/*.mk))
+-include $(sort $(wildcard product/*/build/tasks/*.mk))
# Also the project-specific tasks
-include $(sort $(wildcard vendor/*/*/build/tasks/*.mk))
-include $(sort $(wildcard device/*/*/build/tasks/*.mk))
+-include $(sort $(wildcard product/*/*/build/tasks/*.mk))
endif
# -----------------------------------------------------------------