summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2010-09-02 11:51:45 -0400
committerJohn Koleszar <jkoleszar@google.com>2010-09-02 11:52:39 -0400
commitd6ee72a7bf2e2ef889827f4bc307fe1f930e2f1c (patch)
tree2df8d719d521fcf8f95c6562f99b53df5625e041 /build
parent21039ce16eb794bf250fcd5484c784b2f7c4f2b1 (diff)
downloadlibvpx-d6ee72a7bf2e2ef889827f4bc307fe1f930e2f1c.tar
libvpx-d6ee72a7bf2e2ef889827f4bc307fe1f930e2f1c.tar.gz
libvpx-d6ee72a7bf2e2ef889827f4bc307fe1f930e2f1c.tar.bz2
libvpx-d6ee72a7bf2e2ef889827f4bc307fe1f930e2f1c.zip
Fix target detection on mingw32
gcc -dumpmachine returns only 'mingw32' Change-Id: I774d05a97c5131fc12009e436712c319e54490a5
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make/configure.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 4b732e63f..73cb60085 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -518,6 +518,7 @@ process_common_toolchain() {
tgt_os=darwin9
;;
*mingw32*|*cygwin*)
+ [ -z "$tgt_isa" ] && tgt_isa=x86
tgt_os=win32
;;
*linux*|*bsd*)