aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosme Domínguez Díaz <cosme.ddiaz@gmail.com>2018-04-14 14:41:08 +0200
committerCosme Domínguez Díaz <cosme.ddiaz@gmail.com>2018-04-15 01:30:18 +0200
commita972521221fb1de1afbbaaa2d00b62584278396a (patch)
treedd4e3fe8ea389d3c88384d291e609c70b5e52435
parent89eee564fe7126604dbf94ccfe27af344ab39850 (diff)
msm8996-common: Fix ims symlinks.
* ims apk is now in /system.
-rw-r--r--Android.mk9
1 files changed, 5 insertions, 4 deletions
diff --git a/Android.mk b/Android.mk
index cd678f0..b4010fc 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,6 +1,6 @@
#
-# Copyright (C) 2013-2016, The CyanogenMod Project
-# Copyright (C) 2017, The LineageOS Project
+# Copyright (C) 2016 The CyanogenMod Project
+# Copyright (C) 2017-2018 The LineageOS Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -27,17 +27,18 @@
LOCAL_PATH := $(call my-dir)
ifneq ($(filter z2_plus z2_row,$(TARGET_DEVICE)),)
+
include $(call all-makefiles-under,$(LOCAL_PATH))
include $(CLEAR_VARS)
IMS_LIBS := libimscamera_jni.so libimsmedia_jni.so
-IMS_SYMLINKS := $(addprefix $(TARGET_OUT_VENDOR_APPS)/ims/lib/arm64/,$(notdir $(IMS_LIBS)))
+IMS_SYMLINKS := $(addprefix $(TARGET_OUT_APPS)/ims/lib/arm64/,$(notdir $(IMS_LIBS)))
$(IMS_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
@echo "IMS lib link: $@"
@mkdir -p $(dir $@)
@rm -rf $@
- $(hide) ln -sf /vendor/lib64/$(notdir $@) $@
+ $(hide) ln -sf /system/lib64/$(notdir $@) $@
ALL_DEFAULT_INSTALLED_MODULES += $(IMS_SYMLINKS)