mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
samsung: ril: fix inclusion of secril-client
Change-Id: I1266a59d88811fe0b3188dc63b83bace40f54398
This commit is contained in:
parent
9a80ef74e6
commit
41f25f4dea
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue