diff options
Diffstat (limited to 'doc/build-windows.md')
-rw-r--r-- | doc/build-windows.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/build-windows.md b/doc/build-windows.md index ce837a222a..57e2d68342 100644 --- a/doc/build-windows.md +++ b/doc/build-windows.md @@ -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 .. @@ -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 .. |