From d2601eeaa304bb9f4d6c8b2d976b051ced6d5027 Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 13 Feb 2019 12:25:08 -0600 Subject: 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(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f73792980..f634fcc81 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 $@ -- cgit v1.2.3-54-g00ecf