From be2a264915f57c3048444033e5824d6b40b7cad4 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 16 Nov 2016 10:53:35 +0100 Subject: [PATCH] build: set GO15VENDOREXPERIMENT in env.sh This should fix the 'make' build with Go 1.5. --- build/env.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/env.sh b/build/env.sh index 3914555d1b..af560305b3 100755 --- a/build/env.sh +++ b/build/env.sh @@ -20,7 +20,8 @@ fi # Set up the environment to use the workspace. GOPATH="$workspace" -export GOPATH +GO15VENDOREXPERIMENT=1 +export GOPATH GO15VENDOREXPERIMENT # Run the command inside the workspace. cd "$ethdir/go-ethereum"