From e50b3bbd5c2e25a7d0dad8e7a374f785b57a172f Mon Sep 17 00:00:00 2001 From: antony-jr Date: Mon, 15 Jul 2019 13:03:20 +0530 Subject: [PATCH] fix(build): bundle missing libjack.so* to work with Fedora Workstation --- appimage/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appimage/build.sh b/appimage/build.sh index 63ffd6050..3f0f70278 100755 --- a/appimage/build.sh +++ b/appimage/build.sh @@ -196,6 +196,8 @@ rm -rf "$QTOX_APP_DIR/usr" cp /usr/lib/x86_64-linux-gnu/libssl.so* "$QTOX_APP_DIR/local/lib/" cp /usr/lib/x86_64-linux-gnu/libcrypt.so* "$QTOX_APP_DIR/local/lib/" cp /usr/lib/x86_64-linux-gnu/libcrypto.so* "$QTOX_APP_DIR/local/lib" +# Also bundle libjack.so* without which the AppImage does not work in Fedora Workstation +cp /usr/lib/x86_64-linux-gnu/libjack.so* "$QTOX_APP_DIR/local/lib" # this is important , aitool automatically uses the same filename in .zsync meta file. # if this name does not match with the one we upload , the update always fails.