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

Update Make and Build.sh so it works on MinGW
pull/2624/head
Chris Bednarski 11 years ago
commit cf8933e374

@ -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

Loading…
Cancel
Save