From 5c7b0caa1719adb0856422a5c0b59ab1bb171589 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 25 Jan 2010 13:46:57 +1100 Subject: [PATCH] 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 --- doc/install.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/install.html b/doc/install.html index 34c2bcc58f2..0d7b1850b6b 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