From 6a3933b03beacc3e3586f4f3c698d0d1d26c806b Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Fri, 10 Apr 2026 09:32:09 +1200 Subject: [PATCH] Add manylinux_2_34 includes to DOCKER_COMPOSITE_SOURCES The common.manylinux_2_34 and common-manylinux_2_34.crosstool includes were missing from the Makefile, so the sed preprocessor never expanded them when generating Dockerfiles from .in files. This caused XCC_PREFIX to be undefined in the aarch64 Dockerfile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 40200c3..764854b 100644 --- a/Makefile +++ b/Makefile @@ -74,8 +74,8 @@ NON_STANDARD_IMAGES := manylinux_2_28-x64 manylinux_2_34-x64 manylinux2014-x64 m manylinux2014-aarch64 manylinux_2_28-aarch64 manylinux_2_34-aarch64 web-wasm web-wasi-emulated-threads web-wasi-threads # Docker composite files -DOCKER_COMPOSITE_SOURCES = common.docker common.debian common.manylinux2014 common.manylinux_2_28 common.buildroot \ - common.crosstool common.webassembly common.windows common-manylinux.crosstool common-manylinux_2_28.crosstool common.dockcross \ +DOCKER_COMPOSITE_SOURCES = common.docker common.debian common.manylinux2014 common.manylinux_2_28 common.manylinux_2_34 common.buildroot \ + common.crosstool common.webassembly common.windows common-manylinux.crosstool common-manylinux_2_28.crosstool common-manylinux_2_34.crosstool common.dockcross \ common.label-and-env DOCKER_COMPOSITE_FOLDER_PATH = common/ DOCKER_COMPOSITE_PATH = $(addprefix $(DOCKER_COMPOSITE_FOLDER_PATH),$(DOCKER_COMPOSITE_SOURCES))