summaryrefslogtreecommitdiffstats
path: root/rild
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-04-03 21:58:13 -0700
committerDan Willemsen <dwillemsen@google.com>2017-04-04 05:06:24 +0000
commit950d83079f9776f08b28b5e882477a7313fd4cdf (patch)
tree415deed0b642abbb6f9f934329ce99f247c0e168 /rild
parentb3e6a478ff5bdb220e6881089e65f8fdb792b8ca (diff)
downloadandroid_hardware_ril-950d83079f9776f08b28b5e882477a7313fd4cdf.tar.gz
android_hardware_ril-950d83079f9776f08b28b5e882477a7313fd4cdf.tar.bz2
android_hardware_ril-950d83079f9776f08b28b5e882477a7313fd4cdf.zip
rild.c: Use log/log.h instead of utils/Log.h
This doesn't use libutils, so it shouldn't be using the libutils headers. It doesn't use anything unique to utils/Log.h anyways. It also shouldn't be using any headers from TARGET_OUT_HEADERS (aka LOCAL_COPY_HEADERS) Test: m -j rild Change-Id: I64ef29cdc17a32e013bccfa799cb9c125386cf50
Diffstat (limited to 'rild')
-rw-r--r--rild/Android.mk4
-rw-r--r--rild/rild.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/rild/Android.mk b/rild/Android.mk
index 5c7800d..fe81d22 100644
--- a/rild/Android.mk
+++ b/rild/Android.mk
@@ -27,9 +27,7 @@ endif
LOCAL_MODULE_RELATIVE_PATH := hw
LOCAL_PROPRIETARY_MODULE := true
LOCAL_MODULE:= rild
-LOCAL_MODULE_TAGS := optional
LOCAL_INIT_RC := rild.rc
-LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/libril
+include $(BUILD_EXECUTABLE)
-include $(BUILD_EXECUTABLE) \ No newline at end of file
diff --git a/rild/rild.c b/rild/rild.c
index df34dc9..58bd273 100644
--- a/rild/rild.c
+++ b/rild/rild.c
@@ -26,7 +26,7 @@
#include <telephony/ril.h>
#define LOG_TAG "RILD"
-#include <utils/Log.h>
+#include <log/log.h>
#include <cutils/properties.h>
#include <cutils/sockets.h>
#include <sys/capability.h>