summaryrefslogtreecommitdiffstats
path: root/0.153
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2014-06-18 16:08:32 -0700
committerYing Wang <wangying@google.com>2014-06-18 16:08:32 -0700
commit6be0f5fb1c7e329573316e5c2ddb12d3403a3a16 (patch)
tree37370401486948685949cbbd20deb9dc6f958d93 /0.153
parent8a30646cf1f21a487359f185503da4c42865d74b (diff)
downloadandroid_external_elfutils-6be0f5fb1c7e329573316e5c2ddb12d3403a3a16.tar.gz
android_external_elfutils-6be0f5fb1c7e329573316e5c2ddb12d3403a3a16.tar.bz2
android_external_elfutils-6be0f5fb1c7e329573316e5c2ddb12d3403a3a16.zip
Remove HOST_ARCH as filtering condition
Now we support x86_64 as HOST_ARCH as well. Change-Id: I73f89670f02a83f4c631cdb37159987632c8717d
Diffstat (limited to '0.153')
-rwxr-xr-x0.153/libdw/Android.mk4
-rwxr-xr-x0.153/libdwfl/Android.mk4
-rwxr-xr-x0.153/libebl/Android.mk4
-rwxr-xr-x0.153/libelf/Android.mk4
4 files changed, 8 insertions, 8 deletions
diff --git a/0.153/libdw/Android.mk b/0.153/libdw/Android.mk
index 38b6f887..1d053f6a 100755
--- a/0.153/libdw/Android.mk
+++ b/0.153/libdw/Android.mk
@@ -14,8 +14,8 @@
LOCAL_PATH := $(call my-dir)
-supported_platforms := linux-x86 darwin-x86
-cur_platform := $(filter $(HOST_OS)-$(HOST_ARCH),$(supported_platforms))
+supported_platforms := linux darwin
+cur_platform := $(filter $(HOST_OS),$(supported_platforms))
ifdef cur_platform
diff --git a/0.153/libdwfl/Android.mk b/0.153/libdwfl/Android.mk
index 31019146..11573141 100755
--- a/0.153/libdwfl/Android.mk
+++ b/0.153/libdwfl/Android.mk
@@ -14,8 +14,8 @@
LOCAL_PATH := $(call my-dir)
-supported_platforms := linux-x86 darwin-x86
-cur_platform := $(filter $(HOST_OS)-$(HOST_ARCH),$(supported_platforms))
+supported_platforms := linux darwin
+cur_platform := $(filter $(HOST_OS),$(supported_platforms))
ifdef cur_platform
diff --git a/0.153/libebl/Android.mk b/0.153/libebl/Android.mk
index e8c7db84..945ecf48 100755
--- a/0.153/libebl/Android.mk
+++ b/0.153/libebl/Android.mk
@@ -14,8 +14,8 @@
LOCAL_PATH := $(call my-dir)
-supported_platforms := linux-x86 darwin-x86
-cur_platform := $(filter $(HOST_OS)-$(HOST_ARCH),$(supported_platforms))
+supported_platforms := linux darwin
+cur_platform := $(filter $(HOST_OS),$(supported_platforms))
ifdef cur_platform
diff --git a/0.153/libelf/Android.mk b/0.153/libelf/Android.mk
index 87453971..b85e20cd 100755
--- a/0.153/libelf/Android.mk
+++ b/0.153/libelf/Android.mk
@@ -14,8 +14,8 @@
LOCAL_PATH := $(call my-dir)
-supported_platforms := linux-x86 darwin-x86 linux-x86_64 darwin-x86_64
-cur_platform := $(filter $(HOST_OS)-$(HOST_ARCH),$(supported_platforms))
+supported_platforms := linux darwin
+cur_platform := $(filter $(HOST_OS),$(supported_platforms))
ifdef cur_platform