build: remove godep remains

This commit is contained in:
Felix Lange 2016-11-03 11:18:44 +01:00
parent 0970896c88
commit e685c8546f
3 changed files with 2 additions and 3 deletions

View file

@ -29,7 +29,7 @@ test: all
build/env.sh go run build/ci.go test
clean:
rm -fr build/_workspace/pkg/ Godeps/_workspace/pkg $(GOBIN)/*
rm -fr build/_workspace/pkg/ $(GOBIN)/*
# Cross Compilation Targets (xgo)

View file

@ -19,7 +19,6 @@ if [ ! -L "$ethdir/go-ethereum" ]; then
fi
# Set up the environment to use the workspace.
# Also add Godeps workspace so we build using canned dependencies.
GOPATH="$workspace"
export GOPATH

View file

@ -45,7 +45,7 @@ var (
// paths with any of these prefixes will be skipped
skipPrefixes = []string{
// boring stuff
"Godeps/", "tests/files/", "build/",
"vendor/", "tests/files/", "build/",
// don't relicense vendored sources
"crypto/sha3/", "crypto/ecies/", "logger/glog/",
"crypto/secp256k1/curve.go",