diff options
author | Ying Wang <wangying@google.com> | 2011-07-27 16:59:08 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2011-07-27 16:59:08 -0700 |
commit | 0a1fdd7d508a472b6c348a3ab6a9f180eb95b31f (patch) | |
tree | b659278c32a237a2e34e7e58edef6b7aee84b768 /libs/ui/tests/Android.mk | |
parent | b99514a8cfcb070ee6e2a1ece9adb25e2d8114ea (diff) | |
download | frameworks_native-0a1fdd7d508a472b6c348a3ab6a9f180eb95b31f.zip frameworks_native-0a1fdd7d508a472b6c348a3ab6a9f180eb95b31f.tar.gz frameworks_native-0a1fdd7d508a472b6c348a3ab6a9f180eb95b31f.tar.bz2 |
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
Diffstat (limited to 'libs/ui/tests/Android.mk')
-rw-r--r-- | libs/ui/tests/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/tests/Android.mk b/libs/ui/tests/Android.mk index 693a32a..700b604 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)) |