summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Lucangeli Obes <jorgelo@google.com>2015-12-07 14:45:47 -0800
committerJorge Lucangeli Obes <jorgelo@google.com>2015-12-07 14:45:47 -0800
commit105e14acdd63e7d14bb8cfc4c15923c0b42b0b87 (patch)
treefa4117e6ce3d657d80bd699d5daaddd1c51f6c48
parentdacda1b57cb4c04f296bf6c511ccb7e55b59d111 (diff)
downloadcommon-105e14acdd63e7d14bb8cfc4c15923c0b42b0b87.tar.gz
Fix init script filename.
Bug: 26069060 Change-Id: I77c785763e743ad91e02a97e155479db36004f17
-rw-r--r--service_example/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/service_example/Android.mk b/service_example/Android.mk
index 50eb925..01f6b9c 100644
--- a/service_example/Android.mk
+++ b/service_example/Android.mk
@@ -16,7 +16,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := testservice
-LOCAL_REQUIRED_MODULES := init.testservice.rc
+LOCAL_REQUIRED_MODULES := testservice.rc
LOCAL_SRC_FILES := testservice.cpp
LOCAL_SHARED_LIBRARIES := libc libbase
LOCAL_CFLAGS := -Werror
@@ -24,7 +24,7 @@ include $(BUILD_EXECUTABLE)
ifdef INITRC_TEMPLATE
include $(CLEAR_VARS)
-LOCAL_MODULE := init.testservice.rc
+LOCAL_MODULE := testservice.rc
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_INITRCD)