summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJordan Christiansen <xordspar0@gmail.com>2020-09-29 14:55:26 -0500
committerJordan Christiansen <xordspar0@gmail.com>2020-09-30 12:24:45 -0500
commit6dccaa4f26b0ac16179ccf48ab915e5f21a53a78 (patch)
tree6b785d679a8aca24972df45807754263bc137c58 /Makefile
parent453333a35cc791e9031e5d24e0ac5e76a2b2aa75 (diff)
downloadpodman-6dccaa4f26b0ac16179ccf48ab915e5f21a53a78.tar.gz
podman-6dccaa4f26b0ac16179ccf48ab915e5f21a53a78.tar.bz2
podman-6dccaa4f26b0ac16179ccf48ab915e5f21a53a78.zip
Don't disable Go modules when generating varlink
From a fresh install of Fedora 33 Beta and a fresh clone of the repo, `make` fails with the following error when Go modules are disabled: # Only generate the varlink code on Linux (see issue #4814). GO111MODULE=off go generate ./pkg/varlink/... ../../vendor/github.com/varlink/go/cmd/varlink-go-interface-generator/main.go:12:2: cannot find package "github.com/varlink/go/varlink/idl" in any of: /usr/lib/golang/src/github.com/varlink/go/varlink/idl (from $GOROOT) /home/test/src/podman/_output/src/github.com/varlink/go/varlink/idl (from $GOPATH) pkg/varlink/generate.go:3: running "go": exit status 1 make: *** [Makefile:646: pkg/varlink/iopodman.go] Error 1 Signed-off-by: Jordan Christiansen <xordspar0@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8a75c11fb..99a32eb13 100644
--- a/Makefile
+++ b/Makefile
@@ -643,7 +643,7 @@ install.libseccomp.sudo:
pkg/varlink/iopodman.go: .gopathok pkg/varlink/io.podman.varlink
ifneq (,$(findstring Linux,$(shell uname -s)))
# Only generate the varlink code on Linux (see issue #4814).
- GO111MODULE=off $(GO) generate ./pkg/varlink/...
+ $(GO) generate ./pkg/varlink/...
endif
API.md: pkg/varlink/io.podman.varlink