Skip to content

Commit 9501938

Browse files
author
MarcoFalke
committed
Merge #13476: Fix incorrect shell quoting in FreeBSD build instructions.
c9924a2 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
2 parents 2b77008 + c9924a2 commit 9501938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/build-freebsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pkg install autoconf automake boost-libs git gmake libevent libtool openssl pkgc
1717
For the wallet (optional):
1818
```
1919
./contrib/install_db4.sh `pwd`
20-
export BDB_PREFIX='$PWD/db4'
20+
export BDB_PREFIX="$PWD/db4"
2121
```
2222

2323
See [dependencies.md](dependencies.md) for a complete overview.

0 commit comments

Comments
 (0)