diff options
author | murrayn <github@nesbitt.ca> | 2018-06-15 01:34:40 -0700 |
---|---|---|
committer | murrayn <github@nesbitt.ca> | 2018-06-15 01:34:40 -0700 |
commit | c9924a2756a66ed868ddf307c73fd9873ec8b075 (patch) | |
tree | 4e8af5d5a21cfc0a35c0264621082b4cff8c6f1d /doc | |
parent | 7c32b414b6325743c99fed1208bc53ab0fa1996f (diff) |
Fix incorrect shell quoting in FreeBSD build instructions.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build-freebsd.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build-freebsd.md b/doc/build-freebsd.md index c2e4e36dff..48746ce0c2 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. |