From: Art Cancro Date: Sun, 11 Jul 2021 21:55:25 +0000 (-0400) Subject: ARCH needs to be set to 'arm' for 32-bit X-Git-Tag: v939~41^2~4 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=5a449b67ac261325202a69095a23239f76947f46 ARCH needs to be set to 'arm' for 32-bit --- diff --git a/appimage/build_appimage.sh b/appimage/build_appimage.sh index db3f6b30b..1a07c7c6a 100755 --- a/appimage/build_appimage.sh +++ b/appimage/build_appimage.sh @@ -101,7 +101,7 @@ basefilename=citadel-`cat ../release_version.txt` if [ $CPU == x86_64 ] ; then export ARCH=x86_64 elif [ $CPU == armv7l ] ; then - export ARCH=armhf + export ARCH=arm elif [ $CPU == aarch64 ] ; then export ARCH=aarch64 fi