aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@golang.org>2009-11-11 11:18:17 -0800
committerAdam Langley <agl@golang.org>2009-11-11 11:18:17 -0800
commit7f4860640b8cb5e00fe14719d2cb8e91e087eea5 (patch)
tree081ebef3f1d33b1f623954ab85ca28160704b0ad
parentcd0cbd3ed2a01d10f14e04ee7f4dc1748af06f02 (diff)
downloadgo-7f4860640b8cb5e00fe14719d2cb8e91e087eea5.tar.gz
go-7f4860640b8cb5e00fe14719d2cb8e91e087eea5.zip
docs: list make as a build dep.
Fixes #45. R=rsc, r1 CC=golang-dev https://golang.org/cl/154055
-rw-r--r--doc/install.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/install.html b/doc/install.html
index 85ae63f2ca..d095cff28e 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -154,13 +154,14 @@ $ hg clone -r release https://go.googlecode.com/hg/ $GOROOT
<h2>Install Go</h2>
<p>The Go tool chain is written in C. To build it, you need
-to have GCC, the standard C libraries, the parser generator Bison, and the text editor ed
-installed. On OS X, they can be installed as part of <a href="http://developer.apple.com/TOOLS/Xcode/">Xcode</a>.
-On Linux,
+to have GCC, the standard C libraries, the parser generator Bison,
+<tt>make</tt> and the text editor <tt>ed</tt> installed. On OS X, they can be
+installed as part of
+<a href="http://developer.apple.com/TOOLS/Xcode/">Xcode</a>. On Linux,
</p>
<pre>
-$ sudo apt-get install bison gcc libc6-dev ed
+$ sudo apt-get install bison gcc libc6-dev ed make
</pre>
<p>