Skip to content

Commit

Permalink
fix(bootstrap.sh): add instructions for missing unzip & adjust path
Browse files Browse the repository at this point in the history
Fixes qTox#3153
  • Loading branch information
zetok committed Apr 21, 2016
1 parent edc35ba commit 03c36d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,12 @@ http://gnuwin32.sourceforge.net/packages/wget.htm. Install them. The following
steps assume that Wget is installed at `C:\Program Files\GnuWin32\`. If you
decided to choose another location, replace corresponding parts.

### UnZip
Download the UnZip installer for Windows from
http://gnuwin32.sourceforge.net/packages/unzip.htm. Install it. The following
steps assume that UnZip is installed at `C:\Program Files\GnuWin32\`. If you
decided to choose another location, replace corresponding parts.

### Setting up Path

Add MinGW/MSYS/CMake binaries to the system path to make them globally
Expand Down
2 changes: 1 addition & 1 deletion windows/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [ ! -f "libtoxcore_build_windows_x86_shared_release.zip" ]; then
fi

if [ ! -d "include/tox" ]; then
$QTOX_DIR/tools/unzip -o libtoxcore_build_windows_x86_shared_release.zip -d ./
unzip -o libtoxcore_build_windows_x86_shared_release.zip -d ./
fi


Expand Down

1 comment on commit 03c36d8

@Talkless
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea it's OK, but maybe you could extend that PATH example to add C:\Program Files (x86)\GnuWin32\bin along with current C:\Program Files\GnuWin32\bin to make GnuWIN32 available on 64bit machine?

Please sign in to comment.