aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-09-03 17:19:44 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-09-03 17:19:50 +0200
commit5e1ec3b5be95ce4ab870796983da7b56154bbfd6 (patch)
tree90dca46e7a96a61d68c4da74a166686be0d85a4d /doc
parent0c02a75787fe14115c4283290c1d37fbf2bee67e (diff)
parent5b85126863dc788a6d55e57552f27841ff00abdb (diff)
downloadbitcoin-5e1ec3b5be95ce4ab870796983da7b56154bbfd6.tar.xz
Merge pull request #6611
5b85126 Update build-unix.md (Altoidnerd)
Diffstat (limited to 'doc')
-rw-r--r--doc/build-unix.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index 92aed7725e..95e501ac69 100644
--- a/doc/build-unix.md
+++ b/doc/build-unix.md
@@ -154,7 +154,8 @@ make install
# Configure Bitcoin Core to use our own-built instance of BDB
cd $BITCOIN_ROOT
-./configure (other args...) LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/"
+./autogen.sh
+./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" # (other args...)
```
**Note**: You only need Berkeley DB if the wallet is enabled (see the section *Disable-Wallet mode* below).