Skip to content

Commit 72be253

Browse files
luca020400rcstar6696
authored andcommitted
clover: Make Android.mk search recursive
Change-Id: I3a05344f949eae581f1f17cc33b1df475d3e6760
1 parent 35102a6 commit 72be253

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Android.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
LOCAL_PATH := $(call my-dir)
2525

2626
ifeq ($(TARGET_DEVICE),clover)
27-
include $(call all-makefiles-under,$(LOCAL_PATH))
27+
subdir_makefiles=$(call first-makefiles-under,$(LOCAL_PATH))
28+
$(foreach mk,$(subdir_makefiles),$(info including $(mk) ...)$(eval include $(mk)))
2829

2930
include $(CLEAR_VARS)
3031
endif

0 commit comments

Comments
 (0)