Skip to content
This repository has been archived by the owner on Mar 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #85 from googlesamples/fix/local-path
Browse files Browse the repository at this point in the history
Removing unnecessary reference to LOCAL_PATH, it could break some builds.
  • Loading branch information
chaosemer authored Aug 26, 2016
2 parents 8451ad9 + 22a6abe commit 6c79c53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tango_client_api/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ ifeq ($(TARGET_ARCH), arm)
endif

LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_SRC_FILES := $(LOCAL_PATH)/lib/libtango_client_stub.a
LOCAL_SRC_FILES := lib/libtango_client_stub.a

include $(PREBUILT_STATIC_LIBRARY)
6 changes: 3 additions & 3 deletions tango_support_api/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ LOCAL_MODULE := tango_support_api
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include

ifeq ($(TARGET_ARCH), x86)
LOCAL_SRC_FILES := $(LOCAL_PATH)/lib/x86/libtango_support_api.so
LOCAL_SRC_FILES := lib/x86/libtango_support_api.so
endif

ifeq ($(TARGET_ARCH), arm64)
LOCAL_SRC_FILES := $(LOCAL_PATH)/lib/arm64-v8a/libtango_support_api.so
LOCAL_SRC_FILES := lib/arm64-v8a/libtango_support_api.so
endif

ifeq ($(TARGET_ARCH), arm)
LOCAL_SRC_FILES := $(LOCAL_PATH)/lib/armeabi-v7a/libtango_support_api.so
LOCAL_SRC_FILES := lib/armeabi-v7a/libtango_support_api.so
endif

include $(PREBUILT_SHARED_LIBRARY)
Expand Down

0 comments on commit 6c79c53

Please sign in to comment.