From c249bb0aea9ee9c83e7c09f0068edf0c79a642e1 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Fri, 21 Jul 2017 10:44:34 -0700 Subject: [PATCH] Change make -C to a cd command Tried out make -C in this scenario and it did not seem to function correctly, changed to cd. Signed-off-by: Eli Uriegas (cherry picked from commit 3a548f8815d5308b197abea1e39f0a0a4939c4f2) Signed-off-by: Eli Uriegas --- 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..e2962bb78e 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 + cd /go/src/github.com/docker/cli && LDFLAGS='' make VERSION=$(VERSION) GITCOMMIT=$(DOCKER_GITCOMMIT) dynbinary manpages override_dh_auto_test: ./engine/bundles/$(BUNDLE_VERSION)/dynbinary-daemon/dockerd -v