1
0
mirror of https://github.com/golang/go synced 2024-11-24 23:17:57 -07:00

gotest still assumes that gopack is in your PATH

If your $PATH does not include $GOBIN then
the build fails at the first *.a file, which
is probably when running the tests for tar

R=rsc
CC=golang-dev
https://golang.org/cl/193066
This commit is contained in:
Icarus Sparry 2010-01-26 13:15:59 -08:00 committed by Russ Cox
parent 2e688e1ba0
commit 7c1841fb2a

View File

@ -119,7 +119,7 @@ nmgrep() {
# Figure out pkg. # Figure out pkg.
case "$i" in case "$i" in
*.a) *.a)
pkg=$(gopack p $i __.PKGDEF | sed -n 's/^package //p' | sed 1q) pkg=$("$GOBIN"/gopack p $i __.PKGDEF | sed -n 's/^package //p' | sed 1q)
;; ;;
*) *)
pkg=$(sed -n 's/^ .* in package "\(.*\)".*/\1/p' $i | sed 1q) pkg=$(sed -n 's/^ .* in package "\(.*\)".*/\1/p' $i | sed 1q)