1
0
mirror of https://github.com/golang/go synced 2024-11-22 06:34:40 -07:00

list awk in the dependencies needed for installation

(it is installed by apt-get install gawk, I believe)

Fixes #557.

R=rsc
CC=golang-dev
https://golang.org/cl/194050
This commit is contained in:
Rob Pike 2010-01-25 13:46:57 +11:00
parent 3909b6b479
commit 5c7b0caa17

View File

@ -189,13 +189,13 @@ $ hg clone -r release https://go.googlecode.com/hg/ $GOROOT
<p>The Go tool chain is written in C. To build it, you need <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, 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 <tt>make</tt>, <tt>awk</tt>, and the text editor <tt>ed</tt> installed. On OS X, they can be
installed as part of installed as part of
<a href="http://developer.apple.com/TOOLS/Xcode/">Xcode</a>. On Linux, <a href="http://developer.apple.com/TOOLS/Xcode/">Xcode</a>. On Linux,
</p> </p>
<pre> <pre>
$ sudo apt-get install bison gcc libc6-dev ed make $ sudo apt-get install bison gcc libc6-dev ed gawk make
</pre> </pre>
<p> <p>