From c7956184f8e13fbec1e765b0dd2ffcc52e14cae3 Mon Sep 17 00:00:00 2001 From: Milian Wolff Date: Sat, 7 Oct 2023 14:53:27 +0200 Subject: [PATCH] Really disable KGraphViewer for good in the AppImage Disable the KGraphViewer integration, for some reason it was still getting included and triggered crashes. Fixes: https://github.com/KDAB/hotspot/issues/462 --- scripts/appimage/build_appimage.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/appimage/build_appimage.sh b/scripts/appimage/build_appimage.sh index a1f35d6ff..922d7818b 100755 --- a/scripts/appimage/build_appimage.sh +++ b/scripts/appimage/build_appimage.sh @@ -21,8 +21,10 @@ gitversion=$(git -C "$srcdir" describe) . /opt/rh/devtoolset-11/enable mkdir -p "$buildir" && cd "$buildir" +# KGraphViewer triggers strange crashes in the AppImage, disable it cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_PREFIX_PATH=/opt/rh/devtoolset-11/root/ \ + -DCMAKE_DISABLE_FIND_PACKAGE_KGraphViewerPart=ON \ -DAPPIMAGE_BUILD=ON "-DCMAKE_INSTALL_PREFIX=/usr" "$srcdir" make -j