From fa7bc0c7919d1c9b64ec1fc4f8d29832af0c5240 Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 28 Oct 2024 22:47:44 +0100 Subject: [PATCH] fix: entrypoint for armv7l --- docker/manylinux-entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/manylinux-entrypoint b/docker/manylinux-entrypoint index bbe06c0a..e1289aca 100755 --- a/docker/manylinux-entrypoint +++ b/docker/manylinux-entrypoint @@ -6,7 +6,7 @@ if [ "${AUDITWHEEL_ARCH}" == "i686" ] && [ "$(uname -m)" == "x86_64" ]; then linux32 "$@" elif [ "${AUDITWHEEL_ARCH}" == "armv7l" ] && [ "$(uname -m)" != "armv7l" ]; then if [ "$(linux32 uname -m)" == "armv8l" ]; then - export _PYTHON_HOST_PLATFORM="linux_armv7l" + export _PYTHON_HOST_PLATFORM="linux-armv7l" fi linux32 "$@" else