simplify setting XPLATFORM_MINGW

no need for a separate case block.

Change-Id: I8e9f460bc28ea29ff688fde0d777b168440196e1
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Oswald Buddenhagen 2013-11-12 21:56:44 +01:00 committed by The Qt Project
parent dac5fbaa2d
commit 63606d6a39

4
configure vendored
View File

@ -2666,8 +2666,10 @@ fi
[ -z "$XPLATFORM" ] && XPLATFORM="$PLATFORM"
case `basename "$XPLATFORM"` in win32-g++*) XPLATFORM_MINGW=yes;; esac
case "$XPLATFORM" in
*win32-g++*)
XPLATFORM_MINGW=yes
;;
*-maemo*)
XPLATFORM_MAEMO=yes
;;