From e7e7faca03a2a650ba83cbd4c5af68ce03667f43 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 20 Jul 2017 17:11:04 -0700 Subject: [PATCH] Have docker cli be compiled in GOPATH manpage generation was failing for docker cli when being run under aarch64: https://ci.qa.aws.dckr.io/job/docker/job/release-packaging/view/change-requests/job/PR-41/5/execution/node/360/log/ The way to remedy this is to compile the cli and the manpages while in the GOPATH so that dependencies found in the vendor folder are discovered by the go build tools. Signed-off-by: Eli Uriegas Upstream-commit: b325a0eb0216e151be5d3e1ab9e48db07f53c6c5 Component: packaging --- components/packaging/deb/common/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/packaging/deb/common/rules b/components/packaging/deb/common/rules index 3d16fc476e..2f3cee289f 100644 --- a/components/packaging/deb/common/rules +++ b/components/packaging/deb/common/rules @@ -12,7 +12,7 @@ override_dh_gencontrol: override_dh_auto_build: cd engine && ./hack/make.sh dynbinary - LDFLAGS='' make -C cli VERSION=$(VERSION) GITCOMMIT=$(DOCKER_GITCOMMIT) dynbinary manpages + LDFLAGS='' make -C /go/src/github.com/docker/cli VERSION=$(VERSION) GITCOMMIT=$(DOCKER_GITCOMMIT) dynbinary manpages override_dh_auto_test: ./engine/bundles/$(BUNDLE_VERSION)/dynbinary-daemon/dockerd -v