]> Cypherpunks repositories - gostls13.git/commitdiff
fix arm build.
authorRuss Cox <rsc@golang.org>
Fri, 20 Nov 2009 05:16:26 +0000 (21:16 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 20 Nov 2009 05:16:26 +0000 (21:16 -0800)
once more with feeling.

TBR=kaib
https://golang.org/cl/157100

src/make-arm.bash

index 414719a532ea8c1c082b87ea27d918835bf927bf..7594541561ff7b99a40853458ef8c32432ecbd10 100755 (executable)
@@ -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