diff options
author | Chinh Tran <chinht@codeaurora.org> | 2010-11-11 10:02:39 -0800 |
---|---|---|
committer | Chinh Tran <chinht@codeaurora.org> | 2010-11-11 10:02:39 -0800 |
commit | 2ab2953ece9098e0bb349632492476285531da69 (patch) | |
tree | 02fde8ed5829389524db43ff4ca876297a9dbde0 | |
parent | ada020c927243c1eac2b0e8b0e4fb29d76f97532 (diff) | |
download | android_external_connectivity-2ab2953ece9098e0bb349632492476285531da69.tar.gz android_external_connectivity-2ab2953ece9098e0bb349632492476285531da69.tar.bz2 android_external_connectivity-2ab2953ece9098e0bb349632492476285531da69.zip |
external/connectivity: Modify Android.mk to compile all make files
The current Android.mk in external/connectivity calls only all its subdir
make one level below it which causing cnd/ref-cne is not get compiled. Modify
this file to compile all make files.
Change-Id: Iff0d21c599b741daf5777a9910be7f9f6c0d59e8
CRs-fixed: 263910
-rwxr-xr-x[-rw-r--r--] | Android.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk index ba187a6..be40b45 100644..100755 --- a/Android.mk +++ b/Android.mk @@ -1,3 +1,6 @@ +CONN_PATH := $(call my-dir) + ifneq ($(TARGET_SIMULATOR),true) -include $(call all-subdir-makefiles) +include $(call first-makefiles-under, $(CONN_PATH)) endif + |