From ac4d5478b0ee61fca11ad963628740f212e1d01e Mon Sep 17 00:00:00 2001 From: Whit J Date: Tue, 19 Aug 2014 13:20:19 -0700 Subject: [PATCH] A few more bitcoin -> dogecoin in build-unix.md Pretty simple. Should BITCOIN_ROOT be changed? --- doc/build-unix.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build-unix.md b/doc/build-unix.md index a04246830..2cced890c 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -117,7 +117,7 @@ It is recommended to use Berkeley DB 5.1. If you have to build it yourself: ```bash BITCOIN_ROOT=$(pwd) -# Pick some path to install BDB to, here we create a directory within the bitcoin directory +# Pick some path to install BDB to, here we create a directory within the dogecoin directory BDB_PREFIX="${BITCOIN_ROOT}/db5" mkdir -p $BDB_PREFIX @@ -133,7 +133,7 @@ cd db-5.1.29.NC/build_unix/ ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX make install -# Configure Bitcoin Core to use our own-built instance of BDB +# Configure Dogecoin 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/" ```