Skip to content

Commit d9e4201

Browse files
committed
unix: declare proper arch for armv7 triples
There was a mismatch here causing symlink targets to be incorrect.
1 parent b62b289 commit d9e4201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpython-unix/build-cpython.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,10 +879,10 @@ if [ -n "${PYTHON_BINARY_SUFFIX}" ]; then
879879
PYTHON_ARCH="darwin"
880880
;;
881881
armv7-unknown-linux-gnueabi)
882-
PYTHON_ARCH="armv7-linux-gnueabi"
882+
PYTHON_ARCH="arm-linux-gnueabi"
883883
;;
884884
armv7-unknown-linux-gnueabihf)
885-
PYTHON_ARCH="armv7-linux-gnueabihf"
885+
PYTHON_ARCH="arm-linux-gnueabihf"
886886
;;
887887
i686-unknown-linux-gnu)
888888
PYTHON_ARCH="i386-linux-gnu"

0 commit comments

Comments
 (0)