From d5aff0a6fa2b710145c39b01758f58e868e7aec0 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 30 Jan 2014 14:43:42 -0800 Subject: [PATCH] Don't try to build libcorkscrew for LP64. Change-Id: I77e36b83048b40ba53b6790b7c31beac27feee56 --- libcorkscrew/Android.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libcorkscrew/Android.mk b/libcorkscrew/Android.mk index e27531766..f96fc4e7f 100644 --- a/libcorkscrew/Android.mk +++ b/libcorkscrew/Android.mk @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +ifeq ($(TARGET_IS_64_BIT), false) + LOCAL_PATH:= $(call my-dir) generic_src_files := \ @@ -96,3 +98,5 @@ LOCAL_MODULE_TAGS := optional include $(BUILD_HOST_EXECUTABLE) endif # HOST_ARCH == x86 + +endif # TARGET_IS_64_BIT == false