From e3a07b5673ca53b3a28a9d4ae89352715823ab6b Mon Sep 17 00:00:00 2001 From: Stephen J Day Date: Tue, 18 Jul 2017 17:16:03 -0700 Subject: [PATCH] Makefile: no need to build protos binary For the standard make target, there is no need to build the protoc plugin binary. This can be built automatically in response to the `make protos` target. Signed-off-by: Stephen J Day --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6d26db67b..3996e7896 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ INTEGRATION_PACKAGE=${PKG} TEST_REQUIRES_ROOT_PACKAGES=$(shell for f in $$(git grep -l testutil.RequiresRoot | grep -v Makefile);do echo "${PKG}/$$(dirname $$f)"; done) # Project binaries. -COMMANDS=ctr containerd protoc-gen-gogoctrd +COMMANDS=ctr containerd ifneq ("$(GOOS)", "windows") COMMANDS += containerd-shim endif