Fix broken comparison in executable_prefer_symlink.mk

bug: 17024634
Change-Id: Ie9fdcbca1cbd6d204be57636864bb8074cd19732
This commit is contained in:
Narayan Kamath 2014-08-14 15:28:48 +01:00
parent 903e2dd014
commit 123854da97
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)