From da5e33b94f589dea0ef77b5a842ad79a031756b6 Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 26 Sep 2016 02:10:43 +0200 Subject: [PATCH] Fix libQt5XcbQpa.so.5 => not found; #5 https://github.com/probonopd/linuxdeployqt/issues/5#issuecomment-245474269 thanks @skinnysuricate --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 7c0a553..321955b 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -810,7 +810,7 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath if (copyFilePrintStatus(sourcePath, destinationPath)) { runStrip(destinationPath); - QList libraries = getQtLibraries(destinationPath, appDirInfo.path, deploymentInfo.rpathsUsed); + QList libraries = getQtLibraries(sourcePath, appDirInfo.path, deploymentInfo.rpathsUsed); deployQtLibraries(libraries, appDirInfo.path, QStringList() << destinationPath, deploymentInfo.useLoaderPath); } }