diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-09-03 17:19:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-09-03 17:19:50 +0200 |
| commit | 5e1ec3b5be95ce4ab870796983da7b56154bbfd6 (patch) | |
| tree | 90dca46e7a96a61d68c4da74a166686be0d85a4d | |
| parent | Merge pull request #6627 (diff) | |
| parent | Update build-unix.md (diff) | |
| download | discoin-5e1ec3b5be95ce4ab870796983da7b56154bbfd6.tar.xz discoin-5e1ec3b5be95ce4ab870796983da7b56154bbfd6.zip | |
Merge pull request #6611
5b85126 Update build-unix.md (Altoidnerd)
| -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 92aed7725..95e501ac6 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). |