From 240a5329a3c01f2798bdced28ae8b5a3f68a05b9 Mon Sep 17 00:00:00 2001 From: coolGi Date: Tue, 20 Jan 2026 03:45:48 +1030 Subject: [PATCH] appimageTools: unset QT_PLUGIN_PATH to avoid conflict between QT versions packaged by system & appimage --- pkgs/build-support/appimage/appimage-exec.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/build-support/appimage/appimage-exec.sh b/pkgs/build-support/appimage/appimage-exec.sh index 29b695fd0848..74a37055c862 100755 --- a/pkgs/build-support/appimage/appimage-exec.sh +++ b/pkgs/build-support/appimage/appimage-exec.sh @@ -74,6 +74,10 @@ apprun() { else echo "$(basename "$APPIMAGE")" installed in "$APPDIR" fi + # Fix potential for the appimages to try to import libraries from QT + # installed on the system, causing a version mismatch + unset QT_PLUGIN_PATH + export PATH="$PATH:$PWD/usr/bin" }