aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonal OConnor <donaloconnor@gmail.com>2017-09-05 21:26:20 +0100
committerMarcoFalke <falke.marco@gmail.com>2017-10-05 18:56:54 +0200
commitdea3b87dd974edc18961005e66395c9238f0ab16 (patch)
tree314e3f498da899dd4852d6483de73d8690e76da9
parenta43be5bcdb27a68abe9bb5fec57185a1b6652479 (diff)
downloadbitcoin-dea3b87dd974edc18961005e66395c9238f0ab16.tar.xz
Add new step to clean $PATH var by removing /mnt specific Window's %PATH% paths that cause issues with the make system
Github-Pull: #11437 Rebased-From: 4f890ba6bc8caba5394c7a5388d7f07959ced78b
-rw-r--r--doc/build-windows.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/build-windows.md b/doc/build-windows.md
index ca1a05dfb4..24ca8fd41f 100644
--- a/doc/build-windows.md
+++ b/doc/build-windows.md
@@ -70,6 +70,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 ..
@@ -85,6 +86,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 ..