From d2b6e806f26314c2d4ad0fe5b56132c66851d972 Mon Sep 17 00:00:00 2001 From: Javi Polo Date: Mon, 12 Aug 2024 18:26:45 +0200 Subject: [PATCH] Move --target-arch to image builder args Signed-off-by: Javi Polo --- training/common/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/training/common/Makefile.common b/training/common/Makefile.common index 514ddaf1..49f32238 100644 --- a/training/common/Makefile.common +++ b/training/common/Makefile.common @@ -89,7 +89,6 @@ check-umask: bootc-image-builder: mkdir -p build/store build/output podman run \ - $(ARCH:%=--target-arch %) \ $(AUTH_JSON:%=-v %:/run/containers/0/auth.json) \ --rm \ -ti \ @@ -106,6 +105,7 @@ bootc-image-builder: --chown $(DISK_UID):$(DISK_GID) \ --local \ --type $(DISK_TYPE) \ + $(ARCH:%=--target-arch %) \ $(BOOTC_IMAGE) .PHONY: driver-toolkit