aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-11-16 17:53:35 +0800
committerFelix Lange <fjl@twurst.com>2016-11-16 17:54:05 +0800
commitbe2a264915f57c3048444033e5824d6b40b7cad4 (patch)
treed32acda93c2669f1f2339c884732eabf6420f84a /build
parent64359c9417244c7a824ea90b39a20b06f702bc08 (diff)
downloadgo-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.tar
go-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.tar.gz
go-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.tar.bz2
go-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.tar.lz
go-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.tar.xz
go-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.tar.zst
go-tangerine-be2a264915f57c3048444033e5824d6b40b7cad4.zip
build: set GO15VENDOREXPERIMENT in env.sh
This should fix the 'make' build with Go 1.5.
Diffstat (limited to 'build')
-rwxr-xr-xbuild/env.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/env.sh b/build/env.sh
index 3914555d1..af560305b 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"