Skip to content

Commit

Permalink
samsung: ril: fix inclusion of secril-client
Browse files Browse the repository at this point in the history
Change-Id: I1266a59d88811fe0b3188dc63b83bace40f54398
  • Loading branch information
Daniel Hillenbrand committed Jul 11, 2013
1 parent 9a80ef7 commit 41f25f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ril/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
# limitations under the License.
#

LOCAL_PATH := $(call my-dir)
RIL_PATH := $(call my-dir)

ifeq ($(BOARD_VENDOR),samsung)

# libril
ifeq ($(BOARD_PROVIDES_LIBRIL),true)
ifeq ($(BOARD_MODEM_TYPE),xmm6260)
include $(LOCAL_PATH)/xmm6260/libril/Android.mk
include $(RIL_PATH)/xmm6260/libril/Android.mk
endif
ifeq ($(BOARD_MODEM_TYPE),xmm6262)
include $(LOCAL_PATH)/xmm6262/libril/Android.mk
include $(RIL_PATH)/xmm6262/libril/Android.mk
endif
endif

# ril client
client_dirs := libsecril-client libsecril-client-sap
include $(call all-named-subdir-makefiles,$(client_dirs))
SECRIL_CLIENT_DIRS := libsecril-client libsecril-client-sap
include $(foreach client_dirs,$(SECRIL_CLIENT_DIRS),$(RIL_PATH)/$(client_dirs)/Android.mk)

endif

0 comments on commit 41f25f4

Please sign in to comment.