Always use 7zip instead of p7zip

This commit is contained in:
Luis Ángel San Martín
2024-09-08 12:23:27 +02:00
parent d54602c72f
commit 5715801616
4 changed files with 7 additions and 7 deletions

View File

@ -47,7 +47,7 @@ void logSystemAndConfig()
#ifdef Q_OS_WIN
if (QLibrary::isLibrary(QApplication::applicationDirPath() + "/utils/7z.dll"))
#elif defined Q_OS_UNIX && !defined Q_OS_MACOS
if (QLibrary::isLibrary(QString(LIBDIR) + "/yacreader/7z.so") | QLibrary::isLibrary(QString(LIBDIR) + "/p7zip/7z.so"))
if (QLibrary::isLibrary(QString(LIBDIR) + "/yacreader/7z.so") | QLibrary::isLibrary(QString(LIBDIR) + "/7zip/7z.so"))
#else
if (QLibrary::isLibrary(QApplication::applicationDirPath() + "/utils/7z.so"))
#endif