[Pkg-bitcoin-commits] [bitcoin] 58/126: Add new step to clean $PATH var by removing /mnt specific Window's %PATH% paths that cause issues with the make system

Jonas Smedegaard dr at jones.dk
Mon Nov 13 20:01:58 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to annotated tag debian/0.15.1_dfsg-1
in repository bitcoin.

commit dea3b87dd974edc18961005e66395c9238f0ab16
Author: Donal OConnor <donaloconnor at gmail.com>
Date:   Tue Sep 5 21:26:20 2017 +0100

    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
---
 doc/build-windows.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/doc/build-windows.md b/doc/build-windows.md
index ca1a05d..24ca8fd 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 ..

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bitcoin/bitcoin.git



More information about the Pkg-bitcoin-commits mailing list