summaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2013-03-12 13:55:58 -0700
committerRob Pike <r@golang.org>2013-03-12 13:55:58 -0700
commit1e7f29e3766b71166147a4349a03a51e69c6f673 (patch)
tree45514d899399f8f4514b54f21dc178637845d455 /src/make.bash
parenta640484903fdd1d6c573aae619fba7e7058ae891 (diff)
downloadgo-1e7f29e3766b71166147a4349a03a51e69c6f673.tar.gz
go/types: delete from main repo; part of move to go.exp
See also https://codereview.appspot.com/7656044 R=golang-dev, gri, rsc CC=golang-dev https://codereview.appspot.com/7625048
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/make.bash b/src/make.bash
index a06964c3a..c15711b31 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -134,15 +134,14 @@ echo
if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOHOSTOS" != "$GOOS" ]; then
echo "# Building packages and commands for host, $GOHOSTOS/$GOHOSTARCH."
- # TODO: Drop the -tags gotypes before releasing Go 1.1. It is to allow type checking in go vet.
GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \
- "$GOTOOLDIR"/go_bootstrap install -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -tags gotypes -v std
+ "$GOTOOLDIR"/go_bootstrap install -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std
echo
fi
echo "# Building packages and commands for $GOOS/$GOARCH."
# TODO: Drop the -tags gotypes before releasing Go 1.1. It is to allow type checking in go vet.
-"$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -tags gotypes -v std
+"$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std
echo
rm -f "$GOTOOLDIR"/go_bootstrap