We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af553d6 commit 7f07217Copy full SHA for 7f07217
data/scripts/Linux-AppImage/create-appimage.sh
@@ -66,8 +66,8 @@ fi
66
append() { eval "$1=\"\$$1\${$1:+ }$2\""; }
67
68
# deploy libdecor + its plugin(s) - it is dlopen-ed so not automatic
69
-if [ -f $APPPREFIX/lib/ultragrid/ultragrid_display_gl.so ] ||
70
- [ -f $APPPREFIX/lib/ultragrid/ultragrid_display_sdl.so ]; then
+pref=$APPPREFIX/lib/ultragrid/ultragrid_display_
+if [ -f ${pref}gl.so ] || [ -f ${pref}sdl.so ] || [ -f ${pref}vulkan.so ]; then
71
libdecor=$(find /usr/lib -name libdecor-0.so.0 | head -n 1)
72
if [ -f "$libdecor" ]; then
73
cp "$libdecor" $APPPREFIX/lib/
0 commit comments