From 74cb4e09a50b0f8cc45fce9ac072d1079eb03b42 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 4 Jul 2020 12:41:40 +0200 Subject: go.mod: add go-fuzz-build Otherwise go-fuzz-build now fails with: + go-fuzz-build -libfuzzer -func FuzzDeserialize -o fuzzer.a ./prog/test -: cannot find package "." in: /syzkaller/gopath/src/github.com/google/syzkaller/vendor/github.com/dvyukov/go-fuzz/go-fuzz-dep --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 71c72a6bb..bced8120d 100644 --- a/Makefile +++ b/Makefile @@ -401,8 +401,7 @@ install_prerequisites: sudo apt-get install -y -q g++-s390x-linux-gnu || true sudo apt-get install -y -q g++-riscv64-linux-gnu || true sudo apt-get install -y -q ragel clang-format - go get -u golang.org/x/tools/cmd/goyacc \ - github.com/dvyukov/go-fuzz/go-fuzz-build + go get -u golang.org/x/tools/cmd/goyacc check_copyright: ./tools/check-copyright.sh -- cgit mrf-deployment