The Android.mk for gps.conf was ineffective since it was commented out. This change corrects that. Change-Id: If07df6a2a1694b442a741382206261b5087a0105
11 lines
230 B
Makefile
Executable file
11 lines
230 B
Makefile
Executable file
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := gps.conf
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_CLASS := ETC
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/
|
|
LOCAL_SRC_FILES := gps.conf
|
|
include $(BUILD_PREBUILT)
|
|
|