Skip to content

Commit

Permalink
fix: entrypoint for armv7l
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Oct 28, 2024
1 parent 3507a6a commit fa7bc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/manylinux-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fa7bc0c

Please sign in to comment.