aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-03-21 08:32:34 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-03-21 08:33:21 +0100
commit33207fc8705be48c8b1c3b9ef9b059de39708a2b (patch)
tree58524cc75be02f1a8dd2411c652f21acc50cd881
parent733a7992186c3d6338fcfe259c93b5dc15d796a7 (diff)
parent7211bceb1140196512e1dec97e9d795dbdd09762 (diff)
downloadbitcoin-33207fc8705be48c8b1c3b9ef9b059de39708a2b.tar.xz
Merge pull request #3906
7211bce Consistent use of 'sudo' in unix build doc (Mikael Wikman)
-rw-r--r--doc/build-unix.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index 341b17b543..31159d44b1 100644
--- a/doc/build-unix.md
+++ b/doc/build-unix.md
@@ -108,15 +108,15 @@ To build without GUI pass `--without-gui`.
To build with Qt 4 you need the following:
- apt-get install libqt4-dev libprotobuf-dev protobuf-compiler
+ sudo apt-get install libqt4-dev libprotobuf-dev protobuf-compiler
For Qt 5 you need the following:
- apt-get install libqt5gui5 libqt5core5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev
+ sudo apt-get install libqt5gui5 libqt5core5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev
libqrencode (optional) can be installed with:
- apt-get install libqrencode-dev
+ sudo apt-get install libqrencode-dev
Once these are installed, they will be found by configure and a bitcoin-qt executable will be
built by default.