Merge "Fix broken comparison in executable_prefer_symlink.mk" into lmp-dev

This commit is contained in:
Narayan Kamath 2014-08-15 09:22:26 +00:00 committed by Android (Google) Code Review
commit f502c41459
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ ifneq ($(LOCAL_IS_HOST_MODULE),true)
# We support both 32 and 64 bit apps, so we will have to
# base our decision on whether the target prefers one or the
# other.
ifneq ($(TARGET_PREFER_32_BIT_APPS),true)
ifeq ($(TARGET_PREFER_32_BIT_APPS),true)
$(my_symlink): PRIVATE_SRC_BINARY_NAME := $(LOCAL_MODULE_STEM_32)
else
$(my_symlink): PRIVATE_SRC_BINARY_NAME := $(LOCAL_MODULE_STEM_64)