From 0a1fdd7d508a472b6c348a3ab6a9f180eb95b31f Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Wed, 27 Jul 2011 16:59:08 -0700 Subject: [PATCH] Fix uses of all-subdir-makefiles We should use all-makefiles-under instead. all-subdir-makefiles can be used only before any "include" statement. Before this change, both subdirs were actually not included. Change-Id: I6bf35d07f294a5012c9322096f999ac26e37432f --- libs/ui/tests/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui/tests/Android.mk b/libs/ui/tests/Android.mk index 693a32aa0..700b60479 100644 --- a/libs/ui/tests/Android.mk +++ b/libs/ui/tests/Android.mk @@ -45,4 +45,4 @@ $(foreach file,$(test_src_files), \ ) # Build the manual test programs. -include $(call all-subdir-makefiles) +include $(call all-makefiles-under, $(LOCAL_PATH))