From b22059db7db4925c2fff9e630d05172888eee405 Mon Sep 17 00:00:00 2001 From: Pavlos Tzianos Date: Tue, 21 May 2024 17:39:25 +0100 Subject: [PATCH] 188: fix typo in make variable commit 1f104b0f fixes a typo in the component_binaries variable, however it didn't fix other instance of this variable used as dependencies, thus breaking the container publishing functionality. this commit fixes this. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 460b306b0..f0c6308bd 100644 --- a/Makefile +++ b/Makefile @@ -36,10 +36,10 @@ export ######################################## .PHONY: components component-binaries cmd/draconctl/bin protos build publish-component-containers publish-containers draconctl-image draconctl-image-publish clean-protos clean -$(component_binariess): +$(component_binaries): CGO_ENABLED=0 ./scripts/build_component_binary.sh $@ -component-binaries: $(component_binariess) +component-binaries: $(component_binaries) $(component_containers): %/docker: %/bin ./scripts/build_component_container.sh $@