OSDN Git Service

Fix broken comparison in executable_prefer_symlink.mk
authorNarayan Kamath <narayan@google.com>
Thu, 14 Aug 2014 14:28:48 +0000 (15:28 +0100)
committerNarayan Kamath <narayan@google.com>
Thu, 14 Aug 2014 14:28:48 +0000 (15:28 +0100)
bug: 17024634
Change-Id: Ie9fdcbca1cbd6d204be57636864bb8074cd19732

core/executable_prefer_symlink.mk

index e4df92e..2326e83 100644 (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)