From 72404e29dd7b3551cf4097b551336faaf996e4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Tue, 28 Oct 2014 21:27:14 -0200 Subject: [PATCH] (qb) Fix OS detection under MinGW --- qb/qb.comp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qb/qb.comp.sh b/qb/qb.comp.sh index 7aed008e39..6fa7110f83 100644 --- a/qb/qb.comp.sh +++ b/qb/qb.comp.sh @@ -19,9 +19,9 @@ if [ -z "$CROSS_COMPILE" ] || [ -z "$OS" ]; then 'Linux') OS='Linux';; *'BSD') OS='BSD';; 'Darwin') OS='Darwin';; - 'MINGW32'*) OS='MinGW';; 'CYGWIN'*) OS='Cygwin';; 'Haiku') OS='Haiku';; + 'MINGW'*) OS='Win32';; *) OS="Win32";; esac fi