From a778816813bfda0124cc8b83637c6fc182b23a2c Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 20 Mar 2024 19:10:25 +0100 Subject: [PATCH] Makefile: fix definition of PLATFORMS variable Otherwise the build will fail if PLATFORMS is not defined on make invocation. Fixes: 0ee97a0754ad ("Allow users to overwrite build platforms") Signed-off-by: Tobias Klauser --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 92d9f079..8fb309ad 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ REGISTRIES ?= quay.io/cilium PUSH ?= false EXPORT ?= false -PLATFORMs ?= linux/amd64,linux/arm64 +PLATFORMS ?= linux/amd64,linux/arm64 all-images: lint maker-image update-maker-image tester-image update-tester-image compilers-image update-compilers-image bpftool-image llvm-image network-perf-image