summaryrefslogtreecommitdiff
path: root/build/make/configure.sh
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-02-05 12:18:24 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2015-02-05 12:18:24 -0800
commit3be948d84b48c92386887aea0bd7ddb931ee03b4 (patch)
treef740581cdc30caf7cf37f2b318d9e74b913a068b /build/make/configure.sh
parent74679363403715225302f6307e14a4efa4eb7dd1 (diff)
parent769fe6e2b38d9dbb8b60f3af9e0555614d77caf8 (diff)
downloadlibvpx-3be948d84b48c92386887aea0bd7ddb931ee03b4.tar
libvpx-3be948d84b48c92386887aea0bd7ddb931ee03b4.tar.gz
libvpx-3be948d84b48c92386887aea0bd7ddb931ee03b4.tar.bz2
libvpx-3be948d84b48c92386887aea0bd7ddb931ee03b4.zip
Merge "configure: enable x86inc for all intel platforms"
Diffstat (limited to 'build/make/configure.sh')
-rw-r--r--build/make/configure.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index c0b5072e9..723509103 100644
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1259,14 +1259,7 @@ EOF
fi
fi
- tgt_os_no_version=$(echo "${tgt_os}" | tr -d "[0-9]")
- if [ "${tgt_os_no_version}" = "openbsd" ] || [ "`uname`" = "OpenBSD" ]; then
- openbsd_like=yes
- fi
- # Default use_x86inc to yes when we are 64 bit, non-pic, or on any
- # non-Darwin target.
- if [ "${tgt_isa}" = "x86_64" ] || [ "${pic}" != "yes" ] || \
- [ "${openbsd_like}" != "yes" ]; then
+ if [ "${tgt_isa}" = "x86_64" ] || [ "${tgt_isa}" = "x86" ]; then
soft_enable use_x86inc
fi