diff options
author | Felix Lange <fjl@twurst.com> | 2016-11-16 17:53:35 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-11-16 17:54:05 +0800 |
commit | be2a264915f57c3048444033e5824d6b40b7cad4 (patch) | |
tree | d32acda93c2669f1f2339c884732eabf6420f84a /build/env.sh | |
parent | 64359c9417244c7a824ea90b39a20b06f702bc08 (diff) | |
download | dexon-be2a264915f57c3048444033e5824d6b40b7cad4.tar dexon-be2a264915f57c3048444033e5824d6b40b7cad4.tar.gz dexon-be2a264915f57c3048444033e5824d6b40b7cad4.tar.bz2 dexon-be2a264915f57c3048444033e5824d6b40b7cad4.tar.lz dexon-be2a264915f57c3048444033e5824d6b40b7cad4.tar.xz dexon-be2a264915f57c3048444033e5824d6b40b7cad4.tar.zst dexon-be2a264915f57c3048444033e5824d6b40b7cad4.zip |
build: set GO15VENDOREXPERIMENT in env.sh
This should fix the 'make' build with Go 1.5.
Diffstat (limited to 'build/env.sh')
-rwxr-xr-x | build/env.sh | 3 |
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" |