From efbe7175f4230dd3b96ab8865cefa4e95c62212d Mon Sep 17 00:00:00 2001 From: "Miso Zmiric (Mike Squinter)" Date: Sun, 14 Sep 2014 13:58:27 +0100 Subject: [PATCH] fixes #423, the install script now appends the /bin to the path variable suggestion --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f4d69fb956..d9f7c93a95 100755 --- a/install.sh +++ b/install.sh @@ -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 + mingw_path=/usr/local/$mingw_name/bin 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