mirror of
https://github.com/golang/go
synced 2024-11-19 02:54:42 -07:00
551edbff13
sid was trying to use hg still. And remove curl everywhere (except nacl). It's unnecessary. Change-Id: I2a235d83b2bc7cf599c8de5796c724d8f368348e Reviewed-on: https://go-review.googlesource.com/1368 Reviewed-by: David Symonds <dsymonds@golang.org>
15 lines
496 B
Bash
Executable File
15 lines
496 B
Bash
Executable File
set -ex
|
|
|
|
apt-get update
|
|
# curl is needed to fetch the sel_ldr nacl binaries:
|
|
apt-get install -y --no-install-recommends curl ca-certificates
|
|
# For building Go's bootstrap 'dist' prog
|
|
apt-get install -y --no-install-recommends gcc libc6-dev
|
|
# For interacting with the Go source & subrepos:
|
|
apt-get install -y --no-install-recommends git-core
|
|
# For 32-bit nacl:
|
|
apt-get install -y --no-install-recommends libc6-i386 libc6-dev-i386 lib32stdc++6 gcc-multilib
|
|
|
|
apt-get clean
|
|
rm -fr /var/lib/apt/lists
|