Merge pull request #2573 from pecigonzalo/f-build-mingw

Update Make and Build.sh so it works on MinGW
This commit is contained in:
Chris Bednarski 2015-08-20 19:16:20 -07:00
commit cf8933e374
1 changed files with 10 additions and 1 deletions

View File

@ -62,7 +62,16 @@ case $(uname) in
;;
esac
OLDIFS=$IFS
IFS=: MAIN_GOPATH=($GOPATH)
IFS=:
case $(uname) in
MINGW*)
IFS=";"
;;
MSYS*)
IFS=";"
;;
esac
MAIN_GOPATH=($GOPATH)
IFS=$OLDIFS
# Copy our OS/Arch to the bin/ directory