summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-11-19 21:16:26 -0800
committerRuss Cox <rsc@golang.org>2009-11-19 21:16:26 -0800
commitfb93b5c88f1461d9609bc4addc0ca9dd0681fa79 (patch)
tree733c2477951c19c25ec3f88e523470727c90ac99 /src
parent685eac5e26250e4d9b795d1b2baf4bdcbd4939b9 (diff)
downloadgolang-fb93b5c88f1461d9609bc4addc0ca9dd0681fa79.tar.gz
fix arm build.
once more with feeling. TBR=kaib http://codereview.appspot.com/157100
Diffstat (limited to 'src')
-rwxr-xr-xsrc/make-arm.bash6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/make-arm.bash b/src/make-arm.bash
index 414719a53..759454156 100755
--- a/src/make-arm.bash
+++ b/src/make-arm.bash
@@ -50,6 +50,8 @@ fi
(echo '#!/bin/sh'; echo 'exec '$MAKE' "$@"') >$GOBIN/gomake
chmod +x $GOBIN/gomake
+bash clean.bash
+
# TODO(kaib): converge with normal build
#for i in lib9 libbio libmach cmd pkg libcgo cmd/cgo cmd/ebnflint cmd/godoc cmd/gofmt
for i in lib9 libbio libmach cmd pkg cmd/ebnflint cmd/godoc cmd/gofmt
@@ -65,6 +67,10 @@ do
cmd)
bash make.bash
;;
+ pkg)
+ bash deps.bash
+ gomake install
+ ;;
*)
make install
esac