mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
Add new step to clean $PATH var by removing /mnt specific Window's %PATH% paths that cause issues with the make system
This commit is contained in:
parent
e542728cde
commit
4f890ba6bc
@ -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 ..
|
||||
|
Loading…
Reference in New Issue
Block a user