build: fix on Linux
On other systems the temporary directory name
will have a .XXXXXX in the middle of it. Oh well.
R=bradfitz
CC=golang-dev
https://golang.org/cl/5504049
diff --git a/src/buildscript_netbsd_amd64.sh b/src/buildscript_netbsd_amd64.sh
index a5b52ac..5a5637e 100755
--- a/src/buildscript_netbsd_amd64.sh
+++ b/src/buildscript_netbsd_amd64.sh
@@ -5,7 +5,7 @@
export GOOS=netbsd
export GOARCH=amd64
-export WORK=$(mktemp -d -t go-build)
+export WORK=$(mktemp -d -t go-build.XXXXXX)
trap "rm -rf $WORK" EXIT SIGINT SIGTERM
set -e