ARCH needs to be set to 'arm' for 32-bit
authorArt Cancro <ajc@citadel.org>
Sun, 11 Jul 2021 21:55:25 +0000 (17:55 -0400)
committerArt Cancro <ajc@citadel.org>
Sun, 11 Jul 2021 21:55:25 +0000 (17:55 -0400)
appimage/build_appimage.sh

index db3f6b30b3e2de61370b7d9e052ae75187a82127..1a07c7c6a98298af8cc3655e9a9238a2fb134daa 100755 (executable)
@@ -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