scripts: flatpak: better message for missing GL32 extension

This commit is contained in:
Alibek Omarov
2025-09-21 01:25:14 +05:00
parent 04dee4e94d
commit 2e852e4398

View File

@@ -23,7 +23,7 @@ if [[ "$FLATPAK_ID" == *.Compat.i386 ]]; then
fi fi
if [[ ! -e /lib/i386-linux-gnu/libGL.so.1 ]]; then if [[ ! -e /lib/i386-linux-gnu/libGL.so.1 ]]; then
die "Can't find 32-bit OpenGL runtime extension. Try running 'flatpak install org.freedesktop.Platform.GL32.default'" die "Can't find 32-bit OpenGL runtime extension. Try installing running appropriate GL32 extension for your system (org.freedesktop.Platform.GL32.nvidia-VERSION for NVIDIA, otherwise org.freedesktop.Platform.GL32.default)"
fi fi
fi fi