From d2601eeaa304bb9f4d6c8b2d976b051ced6d5027 Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 13 Feb 2019 12:25:08 -0600 Subject: [PATCH] build varlink without GOPATH when gopath was not explicitly set, make would fail due to the varlink generator. this symlink in the makefile addresses that. fixes: #1842 Signed-off-by: baude --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f73792980b..f634fcc81b 100644 --- a/Makefile +++ b/Makefile @@ -94,6 +94,7 @@ help: ifeq ("$(wildcard $(GOPKGDIR))","") mkdir -p "$(GOPKGBASEDIR)" ln -sf "$(CURDIR)" "$(GOPKGBASEDIR)" + ln -sf "$(CURDIR)/vendor/github.com/varlink" "$(FIRST_GOPATH)/src/github.com/varlink" endif touch $@