Don't use LOCAL_PATH in LOCAL_SRC_FILES

These files are automatically relative to the directory of the
current makefile.
This commit is contained in:
Martin Storsjö 2014-02-20 11:54:21 +02:00
parent 6ac6b941cf
commit 42e80cec0d
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := wels
LOCAL_SRC_FILES := $(LOCAL_PATH)/../../../../../libwels.so
LOCAL_SRC_FILES := ../../../../../libwels.so
include $(PREBUILT_SHARED_LIBRARY)

View File

@ -3,7 +3,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := wels
LOCAL_SRC_FILES := $(LOCAL_PATH)/../../../../../libwels.so
LOCAL_SRC_FILES := ../../../../../libwels.so
include $(PREBUILT_SHARED_LIBRARY)