From 85cd819943480a2462b4bc70d5b0f8da96746a52 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Sun, 27 Jul 2025 19:34:44 +0200 Subject: [PATCH] wip: fix endian-ness for s390x --- .docker/install-static-libs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/install-static-libs.sh b/.docker/install-static-libs.sh index b584a2b4..7991b42f 100644 --- a/.docker/install-static-libs.sh +++ b/.docker/install-static-libs.sh @@ -251,7 +251,7 @@ for target_arch in ${TARGET_ARCH_STR//,/ }; do endian="little" case "$CARCH" in - powerpc|powerpc64) + s390x|powerpc|powerpc64) endian="big" ;; esac