From 7ec32a00d74bca7ff1a4873c8133b4811edc7bba Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 20 Jul 2016 09:15:36 -0400 Subject: [PATCH] bootstrap: Add support for MSYS2 Bootstrapping under MSYS2 is the same as under MSYS/MinGW except that `uname` reports `MSYS...` instead of `MINGW...`. --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 20b64a1d9..742fa2b87 100755 --- a/bootstrap +++ b/bootstrap @@ -90,7 +90,7 @@ else fi # Determine whether this is a MinGW environment. -if echo "${cmake_system}" | grep MINGW >/dev/null 2>&1; then +if echo "${cmake_system}" | grep 'MINGW\|MSYS' >/dev/null 2>&1; then cmake_system_mingw=true else cmake_system_mingw=false