diff options
| author | Altoidnerd <[email protected]> | 2015-09-01 07:14:53 -0400 |
|---|---|---|
| committer | altoidnerd <[email protected]> | 2015-09-02 05:13:04 -0400 |
| commit | 5b85126863dc788a6d55e57552f27841ff00abdb (patch) | |
| tree | 6f222a9d0b9d322eaec09a16e58242dd3f61938f | |
| parent | Merge pull request #6548 (diff) | |
| download | discoin-5b85126863dc788a6d55e57552f27841ff00abdb.tar.xz discoin-5b85126863dc788a6d55e57552f27841ff00abdb.zip | |
Update build-unix.md
If a user hasn't ready run autogen.sh, configure doesn't yet exist. Do the instructions seem to presume you have already built bitcoin? I don't think they do.
Would stifle beginners.
Update build-unix.md
| -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). |