From 5f84559e3a3e8c6ce4d6d3e6617b55522b1976a5 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 27 Jun 2011 14:30:02 -0400 Subject: [PATCH] build: use correct list of required programs R=golang-dev, bradfitz, go.peter.90 CC=golang-dev https://golang.org/cl/4627068 --- src/env.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.48.1