diff options
| author | Whit J <[email protected]> | 2014-09-30 10:48:40 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-01 12:52:32 +0200 |
| commit | f60dc15c50e8fad52f8ee3e313041e2d224be667 (patch) | |
| tree | 3e1a25014d391e437ae3ba4163ae028a4185cf49 | |
| parent | Merge pull request #4234 (diff) | |
| download | discoin-f60dc15c50e8fad52f8ee3e313041e2d224be667.tar.xz discoin-f60dc15c50e8fad52f8ee3e313041e2d224be667.zip | |
doc: add make install to build-osx.md and build-unix.md
| -rw-r--r-- | doc/build-osx.md | 4 | ||||
| -rw-r--r-- | doc/build-unix.md | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index 0364d3a01..dc55f8259 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -81,6 +81,10 @@ After exiting, you'll get a warning that the install is keg-only, which means it make check +4. (Optional) You can also install bitcoind to your path: + + make install + Creating a release build ------------------------ You can ignore this section if you are building `bitcoind` for your own use. diff --git a/doc/build-unix.md b/doc/build-unix.md index 0c3376df4..fb5eaec43 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -15,9 +15,12 @@ the usage of the absolute path. To Build --------------------- - ./autogen.sh - ./configure - make +```bash +./autogen.sh +./configure +make +make install # optional +``` This will build bitcoin-qt as well if the dependencies are met. |