diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-05-28 10:14:51 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-05-28 10:15:06 +0200 |
commit | cd19892d98cb50a8001a63cf0a0c14d85a92550c (patch) | |
tree | 37c5a1901157ec550712de48100995266c620eb8 /doc | |
parent | 37634587a77114b9d35056931a5160f8b277fd21 (diff) | |
parent | f701da8f707726e4097e17234cdd7b55255c1077 (diff) |
Merge pull request #4195
f701da8 Doc: Always use absolute paths (Kosta Zertsekel)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build-unix.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index ab5fbad521..1d75c206e5 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -2,6 +2,16 @@ UNIX BUILD NOTES ==================== Some notes on how to build Bitcoin in Unix. +Note +--------------------- +Always use absolute paths to configure and compile bitcoin and the dependencies, +for example, when specifying the the path of the dependency: + + ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX + +Here BDB_PREFIX must absolute path - it is defined using $(pwd) which ensures +the usage of the absolute path. + To Build --------------------- |