https://bugs.documentfoundation.org/show_bug.cgi?id=161391
--- Comment #5 from [email protected] --- Yup, I've just done a bit more testing, and I was right: # (to be run in an appropriate shell) mkdir AppImageTest && cd $_ url=https://appimages.libreitalia.org/LibreOffice-24.2.1.2.basic-x86_64.AppImage wget $url -O good && chmod u+x ./good && ./good --appimage-extract && \ find . -iname '*libxslt*' | wc -l && rm -rf good squashfs-root/ # prints 1 url=https://appimages.libreitalia.org/LibreOffice-24.2.2.2.basic-x86_64.AppImage wget $url -O bad && chmod u+x ./bad && ./bad --appimage-extract && \ find . -iname '*libxslt*' | wc -l && rm -rf bad squashfs-root/ # prints 0 In other words: https://appimages.libreitalia.org/LibreOffice-24.2.1.2.basic-x86_64.AppImage contains an xslt library. https://appimages.libreitalia.org/LibreOffice-24.2.2.2.basic-x86_64.AppImage does *not* contain an xslt library. HTH. -- You are receiving this mail because: You are the assignee for the bug.
