aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-11-11 18:44:09 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-11-11 18:44:28 +0100
commitcbf9609c71c6dca6efac8504dc9bd82f6b205cc9 (patch)
tree9edcba8841c595f2132a3ce8194638755f2a0618 /doc
parent2f71b07d5ed6ac74758e232136e997c94e3df8e6 (diff)
parent70857287869fa33f4bcbe346fccd86f9facdece5 (diff)
downloadbitcoin-cbf9609c71c6dca6efac8504dc9bd82f6b205cc9.tar.xz
Merge pull request #6969
7085728 doc: there is no libboost-base-dev, add missing sudo (Wladimir J. van der Laan)
Diffstat (limited to 'doc')
-rw-r--r--doc/build-unix.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index 57853a9c9d..e1f2ce54d3 100644
--- a/doc/build-unix.md
+++ b/doc/build-unix.md
@@ -61,15 +61,15 @@ Dependency Build Instructions: Ubuntu & Debian
----------------------------------------------
Build requirements:
- sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev
+ sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev bsdmainutils
-On Ubuntu 15.10+ there are generic names for the individual boost development
-packages, so the following can be used to only install necessary parts of
-boost:
+On at least Ubuntu 14.04+ and Debian 7+ there are generic names for the
+individual boost development packages, so the following can be used to only
+install necessary parts of boost:
- apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libboost-base-dev
+ sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
-For Ubuntu before 15.10, or Debian 7 and later libboost-all-dev has to be installed:
+If that doesn't work, you can install all boost development packages with:
sudo apt-get install libboost-all-dev