aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2018-06-15 09:21:10 -0400
committerMarcoFalke <[email protected]>2018-06-15 09:21:14 -0400
commit9501938a44533e98f3327189d05cbcdf3532f596 (patch)
treeb316b5d4c7b8617ab42e9728c1eec25f36bbb95d
parentMerge #13422: Drop ParseHashUV in favor of calling ParseHashStr (diff)
parentFix incorrect shell quoting in FreeBSD build instructions. (diff)
downloaddiscoin-9501938a44533e98f3327189d05cbcdf3532f596.tar.xz
discoin-9501938a44533e98f3327189d05cbcdf3532f596.zip
Merge #13476: Fix incorrect shell quoting in FreeBSD build instructions.
c9924a2756 Fix incorrect shell quoting in FreeBSD build instructions. (murrayn) Pull request description: The current instructions suggest: BDB_PREFIX='$PWD/db4' which results in BDB_PREFIX being set, literally, to '$PWD/db4'. Tree-SHA512: 4a920d7a506ff94fb12793f0b8161fdfe0798382cfa88290a0eadd6926843b577328f7159a55039e2655def7ddf2e7a1eaa3dd30490292d4a920c98759becf56
-rw-r--r--doc/build-freebsd.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build-freebsd.md b/doc/build-freebsd.md
index c2e4e36df..48746ce0c 100644
--- a/doc/build-freebsd.md
+++ b/doc/build-freebsd.md
@@ -17,7 +17,7 @@ pkg install autoconf automake boost-libs git gmake libevent libtool openssl pkgc
For the wallet (optional):
```
./contrib/install_db4.sh `pwd`
-export BDB_PREFIX='$PWD/db4'
+export BDB_PREFIX="$PWD/db4"
```
See [dependencies.md](dependencies.md) for a complete overview.