Skip to content

Commit 4f97f6d

Browse files
author
Frédéric Lespez
committed
Use version 8 of linuxdeployqt (the latest version breaks libsecret support) - Workaround issue 103
Signed-off-by: Frédéric Lespez <[email protected]>
1 parent 32805d3 commit 4f97f6d

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

linux/build-appimage-daily.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,14 @@ cp -P -r /usr/lib/x86_64-linux-gnu/nss ./usr/lib/
7979

8080
# Use linuxdeployqt to deploy
8181
cd /build
82-
wget --ca-directory=/etc/ssl/certs -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
83-
chmod a+x linuxdeployqt*.AppImage
84-
./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
85-
rm ./linuxdeployqt-continuous-x86_64.AppImage
82+
# Use version '8' of linuxdeployqt, the latest version break libsecret support
83+
# See https://github.com/probonopd/linuxdeployqt/issues/544
84+
#LINUXDEPLOYQT_VERSION="continuous"
85+
LINUXDEPLOYQT_VERSION="8"
86+
wget -O linuxdeployqt.AppImage --ca-directory=/etc/ssl/certs -c "https://github.com/probonopd/linuxdeployqt/releases/download/${LINUXDEPLOYQT_VERSION}/linuxdeployqt-continuous-x86_64.AppImage"
87+
chmod a+x linuxdeployqt.AppImage
88+
./linuxdeployqt.AppImage --appimage-extract
89+
rm ./linuxdeployqt.AppImage
8690
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
8791
export LD_LIBRARY_PATH=/app/usr/lib/
8892
./squashfs-root/AppRun ${DESKTOP_FILE} -bundle-non-qt-libs -qmldir=/build/desktop/src/gui

0 commit comments

Comments
 (0)