Commit 5f84559e authored by Russ Cox's avatar Russ Cox

build: use correct list of required programs

R=golang-dev, bradfitz, go.peter.90
CC=golang-dev
https://golang.org/cl/4627068
parent 6c6c2320
...@@ -73,7 +73,7 @@ PROGS=" ...@@ -73,7 +73,7 @@ PROGS="
uniq uniq
" "
for i in bison ed awk gcc $MAKE; do for i in $PROGS; do
if ! which $i >/dev/null 2>&1; then if ! which $i >/dev/null 2>&1; then
echo "Cannot find '$i' on search path." 1>&2 echo "Cannot find '$i' on search path." 1>&2
echo "See http://golang.org/doc/install.html#ctools" 1>&2 echo "See http://golang.org/doc/install.html#ctools" 1>&2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment