diff options
author | baude <bbaude@redhat.com> | 2019-02-13 12:25:08 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-13 12:25:08 -0600 |
commit | d2601eeaa304bb9f4d6c8b2d976b051ced6d5027 (patch) | |
tree | 1475491bb791052a66c4936ff01d42bb11c2b9e4 | |
parent | ee27c39f85507993c0a3dfe3c4dfab4c7b7e5e00 (diff) | |
download | podman-d2601eeaa304bb9f4d6c8b2d976b051ced6d5027.tar.gz podman-d2601eeaa304bb9f4d6c8b2d976b051ced6d5027.tar.bz2 podman-d2601eeaa304bb9f4d6c8b2d976b051ced6d5027.zip |
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 <bbaude@redhat.com>
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 $@ |