From: Rob Pike Date: Mon, 25 Jan 2010 02:46:57 +0000 (+1100) Subject: list awk in the dependencies needed for installation X-Git-Tag: weekly.2010-01-27~51 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5c7b0caa1719adb0856422a5c0b59ab1bb171589;p=gostls13.git 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 --- diff --git a/doc/install.html b/doc/install.html index 34c2bcc58f..0d7b1850b6 100644 --- a/doc/install.html +++ b/doc/install.html @@ -189,13 +189,13 @@ $ hg clone -r release https://go.googlecode.com/hg/ $GOROOT

The Go tool chain is written in C. To build it, you need to have GCC, the standard C libraries, the parser generator Bison, -make and the text editor ed installed. On OS X, they can be +make, awk, and the text editor ed installed. On OS X, they can be installed as part of Xcode. On Linux,

-$ sudo apt-get install bison gcc libc6-dev ed make
+$ sudo apt-get install bison gcc libc6-dev ed gawk make