diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-09-03 17:19:44 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-09-03 17:19:50 +0200 |
commit | 5e1ec3b5be95ce4ab870796983da7b56154bbfd6 (patch) | |
tree | 90dca46e7a96a61d68c4da74a166686be0d85a4d /doc | |
parent | 0c02a75787fe14115c4283290c1d37fbf2bee67e (diff) | |
parent | 5b85126863dc788a6d55e57552f27841ff00abdb (diff) |
Merge pull request #6611
5b85126 Update build-unix.md (Altoidnerd)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build-unix.md | 3 |
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). |