build: only print "You need to add foo to PATH" when needed

Fixes #1223.

R=bradfitz
CC=golang-dev
https://golang.org/cl/2701041
diff --git a/src/make.bash b/src/make.bash
index 0a0f494..11fa99b 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -96,7 +96,7 @@
 	echo Installed Go for $GOOS/$GOARCH in "$GOROOT".
 	echo Installed commands in "$GOBIN".
 	case "$OLDPATH" in
-	*":$GOBIN" | *":$GOBIN:"*)
+	"$GOBIN:"* | *":$GOBIN" | *":$GOBIN:"*)
 		;;
 	*)
 		echo '***' "You need to add $GOBIN to your "'$PATH.' '***'