OSDN Git Service

Remove "ifneq ($(TARGET_ARCH),arm)".
authorAndy McFadden <fadden@android.com>
Tue, 23 Jun 2009 22:58:02 +0000 (15:58 -0700)
committerAndy McFadden <fadden@android.com>
Tue, 23 Jun 2009 23:01:56 +0000 (16:01 -0700)
The following line is "ifeq ($(TARGET_SIMULATOR),true)", which should
never succeed for an ARM build.

This change is inspired by external change 10447, which adds
"ifneq ($(TARGET_ARCH),sh)".  Shouldn't be needed either.

simulator/wrapsim/Android.mk

index 0b7890d..0a995a2 100644 (file)
@@ -3,7 +3,6 @@
 #
 # Build instructions for simulator LD_PRELOAD wrapper.
 #
-ifneq ($(TARGET_ARCH),arm)
 ifeq ($(TARGET_SIMULATOR),true)
 
 LOCAL_PATH:= $(call my-dir)
@@ -55,5 +54,3 @@ LOCAL_MODULE := launch-wrapper
 include $(BUILD_EXECUTABLE)
 
 endif # ifeq ($(TARGET_SIMULATOR),true)
-endif
-# ifneq ($(TARGET_ARCH),arm)