1
0
mirror of https://github.com/golang/go synced 2024-10-02 04:18:33 -06:00

build: use correct list of required programs

R=golang-dev, bradfitz, go.peter.90
CC=golang-dev
https://golang.org/cl/4627068
This commit is contained in:
Russ Cox 2011-06-27 14:30:02 -04:00
parent 6c6c232072
commit 5f84559e3a

View File

@ -73,7 +73,7 @@ PROGS="
uniq
"
for i in bison ed awk gcc $MAKE; do
for i in $PROGS; do
if ! which $i >/dev/null 2>&1; then
echo "Cannot find '$i' on search path." 1>&2
echo "See http://golang.org/doc/install.html#ctools" 1>&2