fix PDK build

- build tools not coming from prebuilts for PDK

Change-Id: I5760a54f502b8aa2167976c8f1e17412f31c6f5f
This commit is contained in:
Keun young Park 2012-09-20 13:50:02 -07:00
parent c4d68391cc
commit 6530b38d7c
1 changed files with 10 additions and 2 deletions

View File

@ -14,7 +14,15 @@
# limitations under the License.
#
ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)))
ifeq (,$(TARGET_BUILD_APPS))
LOCAL_PATH := $(call my-dir)
include $(call first-makefiles-under,$(LOCAL_PATH))
ifeq ($(TARGET_BUILD_PDK),true)
include $(filter-out %/acp/Android.mk %/signapk/Android.mk %/zipalign/Android.mk,\
$(call all-makefiles-under,$(LOCAL_PATH)))
else # !PDK
include $(call all-makefiles-under,$(LOCAL_PATH))
endif # PDK
endif