From d5143ca39a64ec75fffb6fe996370e23fe89d1dc Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Wed, 27 Apr 2022 11:55:08 -0700 Subject: [PATCH] Fix incorrect function call in product-graph This was accidentally broken in aosp/2064287 Fixes: 230599451 Test: m product-graph Change-Id: Ibc9aabc5ddf7ad4d347e89019be44ef0c8ae0ff7 --- core/product-graph.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/product-graph.mk b/core/product-graph.mk index 379110e902..4a44837c54 100644 --- a/core/product-graph.mk +++ b/core/product-graph.mk @@ -25,7 +25,7 @@ define gather-all-makefiles-for-current-product-inner $(if $(filter $(p),$(_all_products_visited)),, \ $(p) \ $(eval _all_products_visited += $(p)) \ - $(call all-products-inner, $(PRODUCTS.$(strip $(p)).INHERITS_FROM)) + $(call gather-all-makefiles-for-current-product-inner, $(PRODUCTS.$(strip $(p)).INHERITS_FROM)) ) \ ) endef