mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-23 03:19:40 +00:00
[ROSBE-WINDOWS] Add precise checks for the correct MSYS environment.
This commit is contained in:
parent
f92810667b
commit
32dcc00319
@ -56,8 +56,8 @@ echo
|
||||
echo "This script builds a RosBE toolchain for Windows."
|
||||
echo
|
||||
|
||||
if [ "`uname -o`" != "Msys" ]; then
|
||||
echo "You can only run this script under a MSYS environment!"
|
||||
if [ "$MSYSTEM" != "MSYS" ]; then
|
||||
echo "Please run this script in an \"MSYS2 MSYS\" environment!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -78,8 +78,8 @@ echo
|
||||
echo "This script builds a RosBE toolchain for Windows."
|
||||
echo
|
||||
|
||||
if [ "`uname -o`" != "Msys" ]; then
|
||||
echo "You can only run this script under a MSYS environment!"
|
||||
if [ "$MSYSTEM" != "MINGW32" ]; then
|
||||
echo "Please run this script in an \"MSYS2 MinGW 32-bit\" environment!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user