Skip to content

Commit 5b85126

Browse files
committed
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
1 parent 10c0e52 commit 5b85126

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/build-unix.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ make install
154154

155155
# Configure Bitcoin Core to use our own-built instance of BDB
156156
cd $BITCOIN_ROOT
157-
./configure (other args...) LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/"
157+
./autogen.sh
158+
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" # (other args...)
158159
```
159160

160161
**Note**: You only need Berkeley DB if the wallet is enabled (see the section *Disable-Wallet mode* below).

0 commit comments

Comments
 (0)