diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-17 20:32:23 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-17 20:32:23 (GMT) |
commit | b3b83059e7c62339712e71294662cd3fa883f0db (patch) | |
tree | 92e48946ae7a2bb48428f3cc9df7937b08998af1 /scripts/mingw-x-build-dependencies.sh | |
parent | be87d30f427a4ffff8a21c3871e0304670443710 (diff) |
tweaks to improve build. alos update about.html docs
Diffstat (limited to 'scripts/mingw-x-build-dependencies.sh')
-rwxr-xr-x | scripts/mingw-x-build-dependencies.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/mingw-x-build-dependencies.sh b/scripts/mingw-x-build-dependencies.sh index 168b847..c3d5179 100755 --- a/scripts/mingw-x-build-dependencies.sh +++ b/scripts/mingw-x-build-dependencies.sh @@ -46,13 +46,13 @@ fi if [ ! -e $MXEDIR ]; then mkdir -p $MXEDIR - cd $MXEDIR/.. - echo "Downloading MXE into " $PWD - if [ "`echo $* | grep 64`" ]; then - git clone -b multi-rebase git://github.com/tonytheodore/mxe.git ./mxe-w64 - else - git clone git://github.com/mxe/mxe.git - fi +fi +cd $MXEDIR/.. +echo "Downloading MXE into " $PWD +if [ "`echo $* | grep 64`" ]; then + git clone -b multi-rebase git://github.com/tonytheodore/mxe.git ./mxe-w64 +else + git clone git://github.com/mxe/mxe.git fi echo "entering" $MXEDIR |