diff options
author | Russ Cox <rsc@golang.org> | 2014-09-08 00:22:40 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2014-09-08 00:22:40 -0400 |
commit | 9cda546c7138f46dd763df7db8964f6137168838 (patch) | |
tree | 2e6d0366d0855b7b41d43d5b9426ea4563c9b55b /src/nacltest.bash | |
parent | 8528da672cc093d4dd06732819abc1f7b6b5a46e (diff) | |
download | go-9cda546c7138f46dd763df7db8964f6137168838.tar.gz |
build: more adjustments for move from src/pkg to src
These were missed in CL 134570043.
Fixes nacl, solaris builds.
TBR=r
CC=golang-codereviews
https://codereview.appspot.com/136320043
Diffstat (limited to 'src/nacltest.bash')
-rwxr-xr-x | src/nacltest.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nacltest.bash b/src/nacltest.bash index 154d99ae9..6220d39f1 100755 --- a/src/nacltest.bash +++ b/src/nacltest.bash @@ -72,8 +72,8 @@ export GOROOT=$(pwd)/.. # Build zip file embedded in package syscall. gobin=${GOBIN:-$(pwd)/../bin} -rm -f pkg/syscall/fstest_nacl.go -GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto pkg/syscall/fstest_nacl.go +rm -f syscall/fstest_nacl.go +GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go # Run standard build and tests. export PATH=$(pwd)/../misc/nacl:$PATH |