From 206ffc66aa2b96bb624240574309ba6de36a5ee5 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Thu, 21 Mar 2019 11:24:09 +0000 Subject: [PATCH] build: Don't build the runtime when building shim binary The `containerd-shim-v2` binary does not need the `kata-runtime` binary to be built first, so remove the dependency. Signed-off-by: James O. D. Hunt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7340add51..fab2b976c 100644 --- a/Makefile +++ b/Makefile @@ -447,7 +447,7 @@ $(GENERATED_CONFIG): Makefile VERSION $(TARGET_OUTPUT): $(EXTRA_DEPS) $(SOURCES) $(GENERATED_GO_FILES) $(GENERATED_FILES) Makefile | show-summary $(QUIET_BUILD)(cd $(CLI_DIR) && go build $(BUILDFLAGS) -o $@ .) -$(SHIMV2_OUTPUT): $(TARGET_OUTPUT) +$(SHIMV2_OUTPUT): $(QUIET_BUILD)(cd $(SHIMV2_DIR)/ && go build -i -o $@ .) .PHONY: \