diff --git a/buildscripts/checkdeps.sh b/buildscripts/checkdeps.sh index 84dbf7f4d..622255644 100644 --- a/buildscripts/checkdeps.sh +++ b/buildscripts/checkdeps.sh @@ -89,11 +89,11 @@ check_minimum_version() { assert_is_supported_arch() { case "${ARCH}" in - x86_64 | amd64 | aarch64 | ppc64le | arm* ) + x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x ) return ;; *) - echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*]" + echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x]" exit 1 esac }