summaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/make.bash b/src/make.bash
index c79395610..000020ecd 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -89,7 +89,7 @@ echo; echo; echo %%%% making runtime generated files %%%%; echo
(
cd "$GOROOT"/src/pkg/runtime
./autogen.sh
- gomake install # copy runtime.h to pkg directory
+ gomake install; gomake clean # copy runtime.h to pkg directory
) || exit 1
if $USE_GO_TOOL; then
@@ -98,7 +98,7 @@ if $USE_GO_TOOL; then
./buildscript_${GOOS}_$GOARCH.sh
echo '# Building Go code.'
- GOPATH="" go install -a all
+ go install -a std
else
echo; echo; echo %%%% making pkg %%%%; echo
gomake -C pkg install