From ecf0f96df9ef12eec2e92b5379bcc1ccbc8840f5 Mon Sep 17 00:00:00 2001 From: Niklaus Schiess Date: Wed, 5 Oct 2022 12:43:36 +0200 Subject: [PATCH] Updated install build compiler script --- build/02_install_build_compiler.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/02_install_build_compiler.sh b/build/02_install_build_compiler.sh index 15cb8c3..7e6fd97 100755 --- a/build/02_install_build_compiler.sh +++ b/build/02_install_build_compiler.sh @@ -3,7 +3,7 @@ if [ $# -ne 1 ];then echo "Missing arch" exit 1 fi -ARCH="${1,,}" +ARCH="${1}" case $ARCH in x86_64|i686|aarch64) ARCH="${ARCH}-linux-musl"