diff options
| author | globalcitizen <[email protected]> | 2011-10-09 17:10:43 +0800 |
|---|---|---|
| committer | globalcitizen <[email protected]> | 2011-10-09 17:10:43 +0800 |
| commit | c60aec9c203f1495039abb1c3ad39ea691f128ac (patch) | |
| tree | 697b69cef2b0c82e11fa8aafecf432424dc41c12 | |
| parent | Collate generic dependency information. Segregate distribution-specific (Ubun... (diff) | |
| download | discoin-c60aec9c203f1495039abb1c3ad39ea691f128ac.tar.xz discoin-c60aec9c203f1495039abb1c3ad39ea691f128ac.zip | |
Fix extraneous directory specifier, beautify bash syntax $VAR -> ${VAR}
| -rw-r--r-- | doc/build-unix.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build-unix.txt b/doc/build-unix.txt index 89afc0db7..b424a5007 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -68,8 +68,8 @@ Dependency Build Instructions: Gentoo emerge -av net-libs/miniupnpc boost openssl sys-libs/db Then take the following steps to build: - cd $BITCOIN_DIR/src - sed -i 's/<db_cxx.h>/<db4.8\/db_cxx.h>/' src/* + cd ${BITCOIN_DIR}/src + sed -i 's/<db_cxx.h>/<db4.8\/db_cxx.h>/' * sed -i 's/-Bstatic/-Bdynamic/' makefile.unix make -f makefile.unix strip bitcoind |