From f078808c054fb18777b1aa8092e1807b2a3cc5dd Mon Sep 17 00:00:00 2001 From: Arif Ali Date: Mon, 27 Jun 2011 11:01:19 +0100 Subject: [PATCH] fixed libhtc_ril_wrapper to compile with CM --- libhtc_ril_wrapper/Android.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libhtc_ril_wrapper/Android.mk b/libhtc_ril_wrapper/Android.mk index 8b46fd8..a5a5d80 100755 --- a/libhtc_ril_wrapper/Android.mk +++ b/libhtc_ril_wrapper/Android.mk @@ -1,4 +1,7 @@ LOCAL_PATH:= $(call my-dir) + +ifneq ($(TARGET_SIMULATOR),true) + include $(CLEAR_VARS) LOCAL_SRC_FILES := libhtc_ril_wrapper.c @@ -10,6 +13,9 @@ LOCAL_CFLAGS += -DRIL_SHLIB #build shared library LOCAL_MODULE:= libhtc_ril_wrapper +LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES) LOCAL_MODULE_TAGS := eng LOCAL_PRELINK_MODULE := false -include $(BUILD_SHARED_LIBRARY) \ No newline at end of file +include $(BUILD_SHARED_LIBRARY) + +endif # !TARGET_SIMULATOR