Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb72f666 authored by Yo Chiang's avatar Yo Chiang
Browse files

Fix makefile include hierarchy

TARGET module android.hardware.media.c2@1.0-service_32 requires non-existent: codec2.vendor.base.policy

The makefile defining codec2.vendor.base.policy is not included by make.
all-makefiles-under only search for makefiles in the immediate subdirs.
Use first-makefiles-under to search for sub-makefiles so that
frameworks/av/media/codec2/hidl/services/Android.mk is included.

Bug: 7456955
Test: TH
Change-Id: I304236c978c738f2a6fc6a5e6b4ce89e71d27487
parent d1626984
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,4 +45,4 @@ docs-internal: $(C2_OUT_TEMP)/doxy-internal.config check-doxygen
.PHONY: docs-all
docs-all: docs-api docs-internal

include $(call all-makefiles-under,$(call my-dir))
include $(call first-makefiles-under,$(call my-dir))