From 61776584529e0314e51184f7a018197228f25fd0 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Wed, 9 Jul 2025 13:51:57 +0200 Subject: [PATCH] Revert eb90b2892a --- build.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build.sh b/build.sh index 9b027f9..d46b9ec 100755 --- a/build.sh +++ b/build.sh @@ -375,7 +375,6 @@ xtchain_build() # This function generates XTCHAIN version file and produces tarball archive xtchain_tarball() { - local BUILD="full" local EXTENSION="" local LIBDIR="" @@ -418,10 +417,7 @@ xtchain_tarball() # Build tarball echo ">>> Creating toolchain archive ..." - if [ ${BUILD_MINIMAL} -eq 1 ]; then - BUILD="min" - fi - tar -I 'zstd -19' -cpf xtchain-${XTCVER}-${TARGET_SYSTEM}-${BUILD}.tar.zst -C ${BINDIR} . + tar -I 'zstd -19' -cpf xtchain-${XTCVER}-${TARGET_SYSTEM}.tar.zst -C ${BINDIR} . }