From: John Koleszar Date: Thu, 2 Sep 2010 15:51:45 +0000 (-0400) Subject: Fix target detection on mingw32 X-Git-Tag: v0.9.2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6ee72a7bf2e2ef889827f4bc307fe1f930e2f1c;p=libvpx Fix target detection on mingw32 gcc -dumpmachine returns only 'mingw32' Change-Id: I774d05a97c5131fc12009e436712c319e54490a5 --- 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*)