Merge "Fix incorrect function call in product-graph"

This commit is contained in:
Treehugger Robot
2022-04-29 07:54:05 +00:00
committed by Gerrit Code Review

View File

@@ -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