aboutsummaryrefslogtreecommitdiff
path: root/doc/build-osx.md
diff options
context:
space:
mode:
authorBrandon Dahler <brandon.dahler@gmail.com>2013-11-10 21:11:33 -0600
committerBrandon Dahler <brandon.dahler@gmail.com>2013-11-10 21:36:13 -0600
commit2b9170746945e5bfc09e2a235c70fee359a224a5 (patch)
treea35504904866dea34cad5fe3879efa1e2cf60da0 /doc/build-osx.md
parent16d5f2c5e0a7276fb2b09d8dd51b7bac2753c4cc (diff)
downloadbitcoin-2b9170746945e5bfc09e2a235c70fee359a224a5.tar.xz
Update build docs that refer to old makefile.* files.
Also update pull-tester's error message.
Diffstat (limited to 'doc/build-osx.md')
-rw-r--r--doc/build-osx.md26
1 files changed, 10 insertions, 16 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md
index 6ded75d340..f70da685e9 100644
--- a/doc/build-osx.md
+++ b/doc/build-osx.md
@@ -56,12 +56,13 @@ Installing the dependencies using MacPorts is very straightforward.
2. Build bitcoind:
- cd src
- make -f makefile.osx
+ ./autogen.sh
+ ./configure
+ make
3. It is a good idea to build and run the unit tests, too:
- make -f makefile.osx test
+ make test
Instructions: HomeBrew
----------------------
@@ -89,22 +90,15 @@ Rerunning "openssl version" should now return the correct version.
git clone git@github.com:bitcoin/bitcoin.git bitcoin
cd bitcoin
-2. Modify source in order to pick up the `openssl` library.
-
- Edit `makefile.osx` to account for library location differences. There's a
- diff in `contrib/homebrew/makefile.osx.patch` that shows what you need to
- change, or you can just patch by doing
-
- patch -p1 < contrib/homebrew/makefile.osx.patch
-
-3. Build bitcoind:
+2. Build bitcoind:
- cd src
- make -f makefile.osx
+ ./autogen.sh
+ ./configure
+ make
-4. It is a good idea to build and run the unit tests, too:
+3. It is a good idea to build and run the unit tests, too:
- make -f makefile.osx test
+ make test
Creating a release build
------------------------