samsung: ril: fix inclusion of secril-client

Change-Id: I1266a59d88811fe0b3188dc63b83bace40f54398
This commit is contained in:
Daniel Hillenbrand 2013-07-11 16:26:34 +02:00
parent 9a80ef74e6
commit 41f25f4dea

View file

@ -14,23 +14,23 @@
# limitations under the License. # limitations under the License.
# #
LOCAL_PATH := $(call my-dir) RIL_PATH := $(call my-dir)
ifeq ($(BOARD_VENDOR),samsung) ifeq ($(BOARD_VENDOR),samsung)
# libril # libril
ifeq ($(BOARD_PROVIDES_LIBRIL),true) ifeq ($(BOARD_PROVIDES_LIBRIL),true)
ifeq ($(BOARD_MODEM_TYPE),xmm6260) ifeq ($(BOARD_MODEM_TYPE),xmm6260)
include $(LOCAL_PATH)/xmm6260/libril/Android.mk include $(RIL_PATH)/xmm6260/libril/Android.mk
endif endif
ifeq ($(BOARD_MODEM_TYPE),xmm6262) ifeq ($(BOARD_MODEM_TYPE),xmm6262)
include $(LOCAL_PATH)/xmm6262/libril/Android.mk include $(RIL_PATH)/xmm6262/libril/Android.mk
endif endif
endif endif
# ril client # ril client
client_dirs := libsecril-client libsecril-client-sap SECRIL_CLIENT_DIRS := libsecril-client libsecril-client-sap
include $(call all-named-subdir-makefiles,$(client_dirs)) include $(foreach client_dirs,$(SECRIL_CLIENT_DIRS),$(RIL_PATH)/$(client_dirs)/Android.mk)
endif endif