]> Cypherpunks repositories - gostls13.git/commitdiff
docs: list make as a build dep.
authorAdam Langley <agl@golang.org>
Wed, 11 Nov 2009 19:18:17 +0000 (11:18 -0800)
committerAdam Langley <agl@golang.org>
Wed, 11 Nov 2009 19:18:17 +0000 (11:18 -0800)
Fixes #45.

R=rsc, r1
CC=golang-dev
https://golang.org/cl/154055

doc/install.html

index 85ae63f2ca6ccc77dbed9e81a3a290352762f0ea..d095cff28e66353904201882621cad36485763b0 100644 (file)
@@ -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>