From b286c4c0d42477d737ca8ba1ecabc66ab6d2521a Mon Sep 17 00:00:00 2001 From: Achilleas Anagnostopoulos Date: Wed, 28 Jun 2017 08:04:41 +0100 Subject: [PATCH] Remove gccgo from Vagrantfile provision section and replace it with make gccgo was used in early gopher-os experiments as is not required for building gopher-os --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 01bedcb..b637b4e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -17,7 +17,7 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL apt-get update - apt-get install -y nasm gccgo xorriso + apt-get install -y nasm make xorriso [ ! -d "/usr/local/go" ] && wget -qO- https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar xz -C /usr/local echo "export GOROOT=/usr/local/go" > /etc/profile.d/go.sh echo "export GOBIN=/usr/local/go/bin" >> /etc/profile.d/go.sh