Skip to content

Commit

Permalink
Add new step to clean $PATH var by removing /mnt specific Window's %P…
Browse files Browse the repository at this point in the history
…ATH% paths that cause issues with the make system
  • Loading branch information
donaloconnor authored and fanquake committed Oct 2, 2017
1 parent e542728 commit 4f890ba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/build-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ To build executables for Windows 64-bit, install the following dependencies:

Then build using:

PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g') # strip out problematic Windows %PATH% imported var
cd depends
make HOST=x86_64-w64-mingw32
cd ..
Expand All @@ -87,6 +88,7 @@ To build executables for Windows 32-bit, install the following dependencies:

Then build using:

PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g') # strip out problematic Windows %PATH% imported var
cd depends
make HOST=i686-w64-mingw32
cd ..
Expand Down

0 comments on commit 4f890ba

Please sign in to comment.