summaryrefslogtreecommitdiffstats
path: root/0.153
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2014-06-19 00:24:59 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-06-19 00:24:59 +0000
commit9164caf596265b8359d4061280e751cef680ff0d (patch)
tree37370401486948685949cbbd20deb9dc6f958d93 /0.153
parent8276e79eca54a720967137c78950cefcb8488339 (diff)
parentd68086becbc77708343c5415a8da483db2bd8ae0 (diff)
downloadandroid_external_elfutils-9164caf596265b8359d4061280e751cef680ff0d.tar.gz
android_external_elfutils-9164caf596265b8359d4061280e751cef680ff0d.tar.bz2
android_external_elfutils-9164caf596265b8359d4061280e751cef680ff0d.zip
am d68086be: Merge "Remove HOST_ARCH as filtering condition"
* commit 'd68086becbc77708343c5415a8da483db2bd8ae0': Remove HOST_ARCH as filtering condition
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