summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-12-23 10:21:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-12-23 10:21:53 +0000
commitdfe6cfd9670f520d6f09d124667fac0e22ae9761 (patch)
treea6aa70aee39cd240ef44c451de46aa7d984aab6a
parent468d5f2e0a408ec794219d9bcbef2b330ac5c155 (diff)
downloadmpv-dfe6cfd9670f520d6f09d124667fac0e22ae9761.tar.bz2
mpv-dfe6cfd9670f520d6f09d124667fac0e22ae9761.tar.xz
Allow passing variants of "mingw32" as system name to --target. This ensures
backwards compatibility after switching from "mingw32msvc" to "mingw32". git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30101 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index f88adb8856..79a3395021 100755
--- a/configure
+++ b/configure
@@ -1434,7 +1434,7 @@ else # if test -z "$_target"
qnx) system_name=QNX ;;
morphos) system_name=MorphOS ;;
amigaos) system_name=AmigaOS ;;
- mingw32) system_name=MINGW32 ;;
+ mingw32*) system_name=MINGW32 ;;
esac
# We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
host_arch=$(echo $_target | cut -d '-' -f 1)