From bace185665b3738cfc875a04edfa16998a06997c Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 3 Apr 2017 21:13:18 +0200 Subject: [PATCH] See whether this makes any difference for setting the rpath of plugins --- shared/shared.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 9b1dab6..e1d6480 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -1093,13 +1093,13 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath if (copyFilePrintStatus(sourcePath, destinationPath)) { runStrip(destinationPath); deployQtLibraries(libraries, appDirInfo.path, QStringList() << destinationPath, deploymentInfo.useLoaderPath); - /* + /* See whether this makes any difference */ // Find out the relative path to the lib/ directory and set it as the rpath QDir dir(destinationPath); QString relativePath = dir.relativeFilePath(appDirInfo.path + "/" + libraries[0].libraryDestinationDirectory); relativePath.remove(0, 3); // remove initial '../' changeIdentification("$ORIGIN/" + relativePath, QFileInfo(destinationPath).canonicalFilePath()); - */ + } } }