fix the /bin issue in the install script

This commit is contained in:
Miso Zmiric (Mike Squinter) 2014-10-14 01:07:16 +01:00
parent 98b9f8ae91
commit fc7bf4da36
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ if [[ `uname` == "Darwin" ]]; then
mingw_name=mingw-w32-bin_i686-darwin
mingw_tar=$mingw_name"_20130531".tar.bz2
mingw_path=/usr/local/$mingw_name/bin
mingw_path=/usr/local/$mingw_name
if [[ ! -f $cachedir/$mingw_tar ]]; then
wget "https://downloads.sourceforge.net/project/mingw-w64/Toolchains targetting Win32/Automated Builds/$mingw_tar" --output-document $cachedir/$mingw_tar
fi
@ -62,7 +62,7 @@ if [[ `uname` == "Darwin" ]]; then
popd
echo "Extracting contents of $mingw_tar to $mingw_path"
echo "Don't forget to add $mingw_path to your PATH variable!"
echo "Don't forget to add $mingw_path/bin to your PATH variable!"
sudo tar -xyf $cachedir/$mingw_tar -C $mingw_path
pushd /usr/local