summaryrefslogtreecommitdiffstats
path: root/rild
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-04-03 21:58:13 -0700
committerSteven Moreland <smoreland@google.com>2017-04-05 09:52:56 -0700
commite196178adb324e4c1e3614e5940825422485482a (patch)
tree765c153714b2ae39ef20f8ed8a8111f7a936572a /rild
parentc7aaac2316b2d9a4e3a472b05156997778b63164 (diff)
downloadandroid_hardware_ril-e196178adb324e4c1e3614e5940825422485482a.tar.gz
android_hardware_ril-e196178adb324e4c1e3614e5940825422485482a.tar.bz2
android_hardware_ril-e196178adb324e4c1e3614e5940825422485482a.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 50a4379..abcc522 100644
--- a/rild/Android.mk
+++ b/rild/Android.mk
@@ -26,9 +26,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 0ce9eaf..f455cbe 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>