2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 09:50:54 +00:00

Don't hard-code soname in build-appimage

This commit is contained in:
Jay Berkenbilt 2022-04-09 17:33:18 -04:00
parent 08fb583449
commit 37f7f57dc5

View File

@ -156,7 +156,7 @@ unset QTDIR; unset QT_PLUGIN_PATH
# Since cmake strips runpath information for executables and we are # Since cmake strips runpath information for executables and we are
# installing with DESTDIR, we need to set LD_LIBRARY_PATH or else ldd # installing with DESTDIR, we need to set LD_LIBRARY_PATH or else ldd
# will fail on the resulting executables # will fail on the resulting executables
export LD_LIBRARY_PATH=$(dirname $(find $appdir -type l -name libqpdf.so.28)) export LD_LIBRARY_PATH=$(dirname $(find $appdir -type l -name 'libqpdf.so.*'))
# Let 'linuxdeployqt' do its first stage of work: # Let 'linuxdeployqt' do its first stage of work:
./linuxdeployqt*.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs ./linuxdeployqt*.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs