Skip to content

Commit

Permalink
Fix compiling for x86 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
hiemanshu committed Nov 21, 2012
1 parent 5fface8 commit 4c11714
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions flashutils/Android.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
LOCAL_PATH := $(call my-dir)

ifneq ($(TARGET_SIMULATOR),true)
ifeq ($(TARGET_ARCH),arm)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := flashutils.c
Expand Down Expand Up @@ -153,5 +152,4 @@ LOCAL_SHARED_LIBRARIES := libflashutils libmmcutils libbmlutils libcutils libc
LOCAL_STATIC_LIBRARIES := libmtdutils
include $(BUILD_EXECUTABLE)

endif # TARGET_ARCH == arm
endif # !TARGET_SIMULATOR
2 changes: 0 additions & 2 deletions libcrecovery/Android.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
LOCAL_PATH := $(call my-dir)

ifneq ($(TARGET_SIMULATOR),true)
ifeq ($(TARGET_ARCH),arm)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := system.c popen.c
Expand All @@ -10,4 +9,3 @@ LOCAL_MODULE_TAGS := eng
include $(BUILD_STATIC_LIBRARY)

endif
endif
2 changes: 0 additions & 2 deletions mmcutils/Android.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ifneq ($(TARGET_SIMULATOR),true)
ifeq ($(TARGET_ARCH),arm)

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
Expand All @@ -26,5 +25,4 @@ LOCAL_MODULE_TAGS := eng

include $(BUILD_SHARED_LIBRARY)

endif # TARGET_ARCH == arm
endif # !TARGET_SIMULATOR
2 changes: 0 additions & 2 deletions mtdutils/Android.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ifneq ($(TARGET_SIMULATOR),true)
ifeq ($(TARGET_ARCH),arm)

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
Expand All @@ -13,6 +12,5 @@ LOCAL_STATIC_LIBRARIES := libcutils libc
LOCAL_FORCE_STATIC_EXECUTABLE := true
include $(BUILD_STATIC_LIBRARY)

endif # TARGET_ARCH == arm
endif # !TARGET_SIMULATOR

0 comments on commit 4c11714

Please sign in to comment.