Commit 9188b1f0 authored by Adam Langley's avatar Adam Langley

Revert make.bash which slipped into the previous revision.

R=rsc
http://codereview.prom.corp.google.com/1024051
parent 19418557
......@@ -47,19 +47,6 @@ if ! (cd lib9 && which quietgcc) >/dev/null 2>&1; then
exit 1
fi
if make --version | head -n 1 | grep -c '^GNU Make' >> /dev/null ; then
MAKEVERSION=$(make --version | head -n 1 | cut -d' ' -f3)
MAKEMAJOR=$(echo $MAKEVERSION | cut -d'.' -f 1)
MAKEMINOR=$(echo $MAKEVERSION | cut -d'.' -f 2)
if [ "$MAKEMAJOR" -lt 3 -o "$MAKEMAJOR" -eq 3 -a "$MAKEMINOR" -le 80 ]; then
echo "Your make is too old. You appear to have $MAKEMAJOR.$MAKEMINOR, but we need at least 3.81."
exit 1
fi
fi
MAKEVERSION=$(make --version | head -n 1 | cut -d' ' -f3)
bash clean.bash
for i in lib9 libbio libmach cmd pkg libcgo cmd/cgo cmd/ebnflint cmd/godoc cmd/gofmt cmd/goyacc cmd/hgpatch
......
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