Skip to content

Commit 68cdb36

Browse files
committed
Fix i386 AppImage
1 parent 6443ca0 commit 68cdb36

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/build-appdir.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ if [ -d /deps/ ]; then
6565
libarch=x86-64
6666
;;
6767
i686)
68-
libarch=i386
68+
# for some reason, ldconfig -p does not list entries with an architecture for i386...
69+
# thankfully, grepping for an empty string is a no-op
70+
libarch=
6971
;;
7072
armhf)
7173
libarch=arm

0 commit comments

Comments
 (0)