From: Russ Cox Date: Mon, 27 Jun 2011 18:30:02 +0000 (-0400) Subject: build: use correct list of required programs X-Git-Tag: weekly.2011-07-07~118 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5f84559e3a3e8c6ce4d6d3e6617b55522b1976a5;p=gostls13.git build: use correct list of required programs R=golang-dev, bradfitz, go.peter.90 CC=golang-dev https://golang.org/cl/4627068 --- diff --git a/src/env.bash b/src/env.bash index 1db0daa22b..f83012a266 100644 --- a/src/env.bash +++ b/src/env.bash @@ -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